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 350 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
16
  1. [tox]
  2. envlist= python3.8
  3. [gh-actions]
  4. python=
  5. 3.8: python3.8
  6. [testenv]
  7. deps= -rrequirements_dev.txt
  8. commands=
  9. flake8 src --count --select=E9,F63,F7,F82 --show-source --statistics
  10. flake8 src --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
  11. mypy src/
  12. pytest -v tests/unit
  13. pytest -v tests/integration
Tip!

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

Comments

Loading...