-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new atlas * update pre-commit * require explicit use of Optional * update tox * update tox
- Loading branch information
1 parent
5835887
commit dbecd16
Showing
5 changed files
with
14 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,15 @@ | ||
# For more information about tox, see https://tox.readthedocs.io/en/latest/ | ||
[tox] | ||
envlist = py{38,39,310}-{linux,windows} | ||
envlist = py{37,38,39,310} | ||
|
||
[gh-actions] | ||
python = | ||
3.7: py37 | ||
3.8: py38 | ||
3.9: py39 | ||
3.10: py310 | ||
|
||
[gh-actions:env] | ||
PLATFORM = | ||
ubuntu-latest: linux | ||
windows-latest: windows | ||
|
||
[testenv] | ||
platform = | ||
macos: darwin | ||
linux: linux | ||
windows: win32 | ||
passenv = | ||
CI | ||
GITHUB_ACTIONS | ||
DISPLAY XAUTHORITY | ||
NUMPY_EXPERIMENTAL_ARRAY_FUNCTION | ||
PYVISTA_OFF_SCREEN | ||
deps = | ||
pytest # https://docs.pytest.org/en/latest/contents.html | ||
pytest-cov # https://pytest-cov.readthedocs.io/en/latest/ | ||
extras = | ||
dev | ||
commands = pytest -v --color=yes --cov=bg_atlasapi --cov-report=xml |