diff --git a/.woodpecker.yml b/.woodpecker.yml index 4016d4a..3afc452 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -5,7 +5,7 @@ pipeline: image: python:3.9-alpine pull: true commands: - - pip install -e .[dev] + - pip install -e .[ci] - tox -e py39 test-3.8: @@ -13,7 +13,7 @@ pipeline: image: python:3.8-alpine pull: true commands: - - pip install -e .[dev] + - pip install -e .[ci] - tox -e py38 test-3.7: @@ -21,7 +21,7 @@ pipeline: image: python:3.7-alpine pull: true commands: - - pip install -e .[dev] + - pip install -e .[ci] - tox -e py37 test-3.6: @@ -29,11 +29,11 @@ pipeline: image: python:3.6-alpine pull: true commands: - - pip install -e .[dev] + - pip install -e .[ci] - tox -e py36 lint: image: python:3.6-alpine commands: - - pip install -e .[dev] + - pip install -e .[ci] - tox -e lint diff --git a/setup.py b/setup.py index 7fd3d42..f9826d3 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,11 @@ setup( "black==20.8b1", "flake8==3.8.4", "tox==3.21.1", - ] + ], + "ci": [ + "black==20.8b1", + "flake8==3.8.4", + "tox==3.21.1", + ], }, )