Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

tox.ini 592 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  1. [tox]
  2. envlist = py3115
  3. ; skipsdist = True
  4. [testenv]
  5. deps = -rrequirements.txt
  6. commands =
  7. # stop the build if there are Python syntax errors or undefined names
  8. ; flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
  9. flake8 src --count --show-source --statistics
  10. # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
  11. ; flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
  12. flake8 src --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics
  13. pytest test/test_functions.py -v
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...