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 664 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
17
18
19
20
21
22
23
24
25
26
  1. [tox]
  2. envlist = py27, py34, py35, py36
  3. [testenv:flake8]
  4. basepython=python
  5. deps=flake8
  6. commands=flake8 wandb
  7. [testenv]
  8. setenv =
  9. PYTHONPATH = {toxinidir}:{toxinidir}/wandb
  10. passenv = CIRCLE_BRANCH
  11. deps =
  12. -r{toxinidir}/requirements_dev.txt
  13. whitelist_externals = mkdir
  14. commands =
  15. mkdir -p "{env:CIRCLE_TEST_REPORTS}"/tox
  16. py.test --cov=wandb --basetemp={envtmpdir} \
  17. --junitxml="{env:CIRCLE_TEST_REPORTS}/tox/tests-{envname}.xml"
  18. coveralls
  19. ; If you want to make tox run the tests with the same versions, create a
  20. ; requirements.txt with the pinned versions and uncomment the following lines:
  21. ; deps =
  22. ; -r{toxinidir}/requirements.txt
Tip!

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

Comments

Loading...