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 451 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
  1. [tox]
  2. envlist=py37
  3. skipdist= True #bcz we are not initializing setup.py
  4. [testenv]
  5. deps=-rrequirements.txt
  6. command=
  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. # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
  10. flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
  11. pytest -v
Tip!

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

Comments

Loading...