This commit is contained in:
parent
05974470ed
commit
be3ee6ce04
2 changed files with 11 additions and 6 deletions
|
|
@ -5,7 +5,7 @@ pipeline:
|
||||||
image: python:3.9-alpine
|
image: python:3.9-alpine
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- pip install -e .[dev]
|
- pip install -e .[ci]
|
||||||
- tox -e py39
|
- tox -e py39
|
||||||
|
|
||||||
test-3.8:
|
test-3.8:
|
||||||
|
|
@ -13,7 +13,7 @@ pipeline:
|
||||||
image: python:3.8-alpine
|
image: python:3.8-alpine
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- pip install -e .[dev]
|
- pip install -e .[ci]
|
||||||
- tox -e py38
|
- tox -e py38
|
||||||
|
|
||||||
test-3.7:
|
test-3.7:
|
||||||
|
|
@ -21,7 +21,7 @@ pipeline:
|
||||||
image: python:3.7-alpine
|
image: python:3.7-alpine
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- pip install -e .[dev]
|
- pip install -e .[ci]
|
||||||
- tox -e py37
|
- tox -e py37
|
||||||
|
|
||||||
test-3.6:
|
test-3.6:
|
||||||
|
|
@ -29,11 +29,11 @@ pipeline:
|
||||||
image: python:3.6-alpine
|
image: python:3.6-alpine
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- pip install -e .[dev]
|
- pip install -e .[ci]
|
||||||
- tox -e py36
|
- tox -e py36
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
image: python:3.6-alpine
|
image: python:3.6-alpine
|
||||||
commands:
|
commands:
|
||||||
- pip install -e .[dev]
|
- pip install -e .[ci]
|
||||||
- tox -e lint
|
- tox -e lint
|
||||||
|
|
|
||||||
7
setup.py
7
setup.py
|
|
@ -13,6 +13,11 @@ setup(
|
||||||
"black==20.8b1",
|
"black==20.8b1",
|
||||||
"flake8==3.8.4",
|
"flake8==3.8.4",
|
||||||
"tox==3.21.1",
|
"tox==3.21.1",
|
||||||
]
|
],
|
||||||
|
"ci": [
|
||||||
|
"black==20.8b1",
|
||||||
|
"flake8==3.8.4",
|
||||||
|
"tox==3.21.1",
|
||||||
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Reference in a new issue