-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix dependency issues * Check dependency issues on lint * Rename pytest task to unit * Stop using tox on github actions * Swtich to macos-10.15 to keep supporting Python 3.6
- Loading branch information
Carles Sala
authored
Oct 19, 2021
1 parent
8fd6c09
commit 9b118c4
Showing
11 changed files
with
44 additions
and
46 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
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
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,34 +1,23 @@ | ||
[tox] | ||
envlist = py3{6,7,8}-{lint,readme,pytest,minimum} | ||
|
||
[travis] | ||
python = | ||
3.8: py38-lint, py38-readme, py38-pytest, py38-minimum | ||
3.7: py37-lint, py37-readme, py37-pytest, py37-minimum | ||
3.6: py36-lint, py36-readme, py36-pytest, py36-minimum | ||
|
||
[gh-actions] | ||
python = | ||
3.8: py38-lint, py38-readme, py38-pytest, py38-minimum | ||
3.7: py37-lint, py37-readme, py37-pytest, py37-minimum | ||
3.6: py36-lint, py36-readme, py36-pytest, py36-minimum | ||
envlist = py38-lint, py38-performance, py3{6,7,8}-{readme,unit,integration,minimum} | ||
|
||
[testenv] | ||
passenv = CI TRAVIS TRAVIS_* | ||
skipsdist = false | ||
skip_install = false | ||
deps = | ||
invoke | ||
readme: rundoc | ||
tutorials: jupyter | ||
extras = | ||
lint: dev | ||
pytest: test | ||
unit: test | ||
integration: test | ||
minimum: test | ||
tutorials: ctgan | ||
performance: test | ||
commands = | ||
lint: invoke lint | ||
readme: invoke readme | ||
pytest: invoke pytest | ||
unit: invoke unit | ||
integration: invoke integration | ||
minimum: invoke minimum | ||
performance: invoke performance | ||
invoke rmdir {envdir} |