forked from globus/globus-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
27 lines (24 loc) · 699 Bytes
/
tox.ini
File metadata and controls
27 lines (24 loc) · 699 Bytes
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
[tox]
envlist =
py{38,37,36,35,34,27,py,py3}
py{38,37,36,35,27}-lowestdeps
py{38,37,36,27}-lint
skip_missing_interpreters = true
[testenv]
usedevelop = true
extras = development
deps =
lowestdeps: requests==2.9.2
lowestdeps: six==1.10.0
lowestdeps: pyjwt[crypto]==1.5.3
commands =
lint: flake8
lint: isort --recursive --check-only tests/ globus_sdk/ setup.py
py36-lint,py37-lint: black --check tests/ globus_sdk/ setup.py
!lint: pytest -v --cov=globus_sdk
[testenv:docs]
whitelist_externals = rm
changedir = docs/
# clean the build dir before rebuilding
commands_pre = rm -rf _build/
commands = sphinx-build . -d _build/doctrees -b dirhtml _build/dirhtml