From 46986498f94d8f7e28dc5df7cd8f873351f79112 Mon Sep 17 00:00:00 2001 From: justin-h-loi Date: Mon, 31 Jul 2023 23:18:23 -0400 Subject: [PATCH] .travis.yml build fix --- .github/workflows/.travis.yml | 805 ++++++++++++++++++++++++++++------ 1 file changed, 683 insertions(+), 122 deletions(-) diff --git a/.github/workflows/.travis.yml b/.github/workflows/.travis.yml index 4798195..19718aa 100644 --- a/.github/workflows/.travis.yml +++ b/.github/workflows/.travis.yml @@ -9,6 +9,18 @@ on: jobs: build-1: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -21,6 +33,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=0 build-2: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -33,6 +57,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=0 build-3: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -45,6 +81,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=0 build-4: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -57,6 +105,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=1 build-5: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -69,6 +129,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=1 build-6: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -81,6 +153,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=1 build-7: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -93,6 +177,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=2 build-8: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -105,6 +201,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=2 build-9: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -117,6 +225,18 @@ jobs: - TOXENV=py27 RUN_INTEGRATION_TESTS=2 build-10: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -129,6 +249,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=0 build-11: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -141,6 +273,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=0 build-12: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -153,6 +297,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=0 build-13: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -165,6 +321,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=1 build-14: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -177,6 +345,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=1 build-15: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -189,6 +369,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=1 build-16: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -201,6 +393,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=2 build-17: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -213,6 +417,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=2 build-18: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -225,6 +441,18 @@ jobs: - TOXENV=py34 RUN_INTEGRATION_TESTS=2 build-19: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -237,6 +465,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=0 build-20: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -249,6 +489,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=0 build-21: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -261,6 +513,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=0 build-22: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -273,6 +537,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=1 build-23: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -285,6 +561,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=1 build-24: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -297,6 +585,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=1 build-25: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -309,6 +609,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=2 build-26: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -321,6 +633,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=2 build-27: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -333,6 +657,18 @@ jobs: - TOXENV=py35 RUN_INTEGRATION_TESTS=2 build-28: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -345,6 +681,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=0 build-29: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -357,6 +705,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=0 build-30: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -369,6 +729,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=0 build-31: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -381,6 +753,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=1 build-32: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -393,6 +777,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=1 build-33: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -405,6 +801,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=1 build-34: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -417,6 +825,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=2 build-35: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -429,6 +849,18 @@ jobs: - TOXENV=py36 RUN_INTEGRATION_TESTS=2 build-36: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -451,6 +883,18 @@ jobs: # env: TOXENV=py37 RUN_INTEGRATION_TESTS=0 build-37: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -472,6 +916,18 @@ jobs: # env: TOXENV=py37 RUN_INTEGRATION_TESTS=1 build-38: runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov strategy: matrix: python-version: @@ -492,124 +948,6 @@ jobs: # env: TOXENV=py37 RUN_INTEGRATION_TESTS=2 build-39: runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '3.7' - os: - - linux - dist: - - xenial - env: - - TOXENV=py37 RUN_INTEGRATION_TESTS=2 - build-40: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - precise - env: - - TOXENV=pep8 RUN_INTEGRATION_TESTS=0 - build-41: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - trust - env: - - TOXENV=pep8 RUN_INTEGRATION_TESTS=0 - build-42: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - xenial - env: - - TOXENV=pep8 RUN_INTEGRATION_TESTS=0 - build-43: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - precise - env: - - TOXENV=bandit RUN_INTEGRATION_TESTS=0 - build-44: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - trust - env: - - TOXENV=bandit RUN_INTEGRATION_TESTS=0 - build-45: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - xenial - env: - - TOXENV=bandit RUN_INTEGRATION_TESTS=0 - build-46: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - precise - env: - - TOXENV=docs RUN_INTEGRATION_TESTS=0 - build-47: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - trust - env: - - TOXENV=docs RUN_INTEGRATION_TESTS=0 - build-48: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - '2.7' - os: - - linux - dist: - - xenial - env: - - TOXENV=docs RUN_INTEGRATION_TESTS=0 steps: - run: pip uninstall -y six - run: pip install six>=1.11.0 @@ -622,7 +960,230 @@ jobs: - run: python setup.py install - run: ./.travis/run.sh - run: codecov - # if [ -f "/tmp/pykmip/server.log" ]; then cat /tmp/pykmip/server.log; fi - # if [ -f "/tmp/slugs/access.log" ]; then cat /tmp/slugs/access.log; fi - # if [ -f "/tmp/slugs/error.log" ]; then cat /tmp/slugs/error.log; fi - + strategy: + matrix: + python-version: + - '3.7' + os: + - linux + dist: + - xenial + env: + - TOXENV=py37 RUN_INTEGRATION_TESTS=2 + build-40: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - precise + env: + - TOXENV=pep8 RUN_INTEGRATION_TESTS=0 + build-41: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - trust + env: + - TOXENV=pep8 RUN_INTEGRATION_TESTS=0 + build-42: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - xenial + env: + - TOXENV=pep8 RUN_INTEGRATION_TESTS=0 + build-43: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - precise + env: + - TOXENV=bandit RUN_INTEGRATION_TESTS=0 + build-44: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - trust + env: + - TOXENV=bandit RUN_INTEGRATION_TESTS=0 + build-45: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - xenial + env: + - TOXENV=bandit RUN_INTEGRATION_TESTS=0 + build-46: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - precise + env: + - TOXENV=docs RUN_INTEGRATION_TESTS=0 + build-47: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - trust + env: + - TOXENV=docs RUN_INTEGRATION_TESTS=0 + build-48: + runs-on: ubuntu-latest + steps: + - run: pip uninstall -y six + - run: pip install six>=1.11.0 + - run: pip install "more_itertools<=7.2.0" + - run: pip install "tox<=3.14.1" + - run: pip install "PyYAML<=5.2" + - run: pip install bandit + - run: pip install codecov + - run: pip install slugs + - run: python setup.py install + - run: ./.travis/run.sh + - run: codecov + strategy: + matrix: + python-version: + - '2.7' + os: + - linux + dist: + - xenial + env: + - TOXENV=docs RUN_INTEGRATION_TESTS=0 + \ No newline at end of file