forked from galaxyproject/bioblend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
46 lines (43 loc) · 730 Bytes
/
tox.ini
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
35
36
37
38
39
40
41
42
43
44
45
46
[tox]
envlist = lint, py38
[testenv]
commands =
pytest {posargs}
deps =
pytest
passenv =
BIOBLEND_GALAXY_API_KEY
BIOBLEND_GALAXY_MASTER_API_KEY
BIOBLEND_GALAXY_URL
BIOBLEND_GALAXY_USER_EMAIL
BIOBLEND_TEST_JOB_TIMEOUT
GALAXY_VERSION
BIOBLEND_TOOLSHED_URL
[testenv:build]
commands =
make clean
python3 -m build
twine check dist/*
deps =
build
twine
allowlist_externals =
make
skip_install = true
[testenv:lint]
commands =
ruff check .
flake8 .
black --check --diff .
isort --check --diff .
mypy bioblend/ docs/examples/
deps =
black
flake8
flake8-bugbear
flake8-sfs
isort
mypy
ruff
types-requests
skip_install = true