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 788 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
27
28
29
30
31
32
33
34
  1. # For more information about tox, see https://tox.readthedocs.io/en/latest/
  2. [tox]
  3. envlist = py{38,39}-{linux,macos,windows}
  4. [gh-actions]
  5. python =
  6. 3.8: py38
  7. #3.9: py39
  8. [gh-actions:env]
  9. PLATFORM =
  10. ubuntu-latest: linux
  11. macos-latest: macos
  12. windows-latest: windows
  13. [testenv]
  14. platform =
  15. macos: darwin
  16. linux: linux
  17. windows: win32
  18. passenv =
  19. CI
  20. GITHUB_ACTIONS
  21. DISPLAY,XAUTHORITY
  22. NUMPY_EXPERIMENTAL_ARRAY_FUNCTION
  23. PYVISTA_OFF_SCREEN
  24. extras = all
  25. deps =
  26. .[all]
  27. py # Needed for py-test import error
  28. pytest # https://docs.pytest.org/en/latest/contents.html
  29. pytest-cov # https://pytest-cov.readthedocs.io/en/latest/
  30. pytest-xvfb ; sys_platform == 'linux'
  31. commands = pytest -v --color=yes --cov=suite2p --cov-report=xml
Tip!

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

Comments

Loading...