Skip to content

Commit 033a013

Browse files
committed
Drop tox -e packaging from CIs
1 parent 8296b1a commit 033a013

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

.azure-pipelines/jobs/package.yml

-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ jobs:
2424
- bash: nox -s generate_news -- --yes
2525
displayName: Generate NEWS.rst
2626

27-
- bash: tox -e packaging
28-
displayName: Run Tox packaging
29-
3027
- bash: python setup.py sdist bdist_wheel
3128
displayName: Create sdist and wheel
3229

.github/workflows/python-linters.yml

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
env:
2121
- TOXENV: docs
2222
- TOXENV: lint
23-
- TOXENV: packaging
2423
steps:
2524
- uses: actions/checkout@master
2625
- name: Set up Python ${{ matrix.env.PYTHON_VERSION || 3.7 }}

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- stage: primary
1818
env: TOXENV=docs
1919
- env: TOXENV=lint
20-
- env: TOXENV=packaging
2120
# Latest CPython
2221
- env: GROUP=1
2322
python: 2.7

tools/travis/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# Short circuit test runs if there are no code changes involved.
5-
if ! [[ $TOXENV ~= ^(docs|lint|packaging)$ ]]; then
5+
if [[ $TOXENV != docs ]] || [[ $TOXENV != lint ]]; then
66
if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]
77
then
88
echo "This is not a PR -- will do a complete build."

0 commit comments

Comments
 (0)