Install pytest packages differently

This commit is contained in:
Douglas Stebila 2019-07-30 21:46:58 -04:00
parent 3e850cbce0
commit dea01e490f

View File

@ -18,9 +18,9 @@ matrix:
packages: packages:
- doxygen - doxygen
- graphviz - graphviz
- python3-pytest
before_install: before_install:
- sh .travis/install-clang-format-linux.sh - sh .travis/install-clang-format-linux.sh
- pip3 install pytest
script: script:
- .travis/all-tests.sh - .travis/all-tests.sh
- os: linux - os: linux
@ -31,8 +31,6 @@ matrix:
- gcc-arm-linux-gnueabi - gcc-arm-linux-gnueabi
- libc6-dev-armel-cross - libc6-dev-armel-cross
- qemu - qemu
before_install:
- pip3 install pytest
script: script:
- scripts/arm-cross-compile.sh - scripts/arm-cross-compile.sh
- scripts/arm-run-tests-qemu.sh - scripts/arm-run-tests-qemu.sh
@ -49,9 +47,9 @@ matrix:
- gcc-4.9 - gcc-4.9
- doxygen - doxygen
- graphviz - graphviz
- python3-pytest
before_install: before_install:
- sh .travis/install-clang-format-linux.sh - sh .travis/install-clang-format-linux.sh
- pip3 install pytest
script: script:
- .travis/all-tests.sh - .travis/all-tests.sh
- os: linux - os: linux
@ -65,8 +63,7 @@ matrix:
- gcc-5 - gcc-5
- doxygen - doxygen
- graphviz - graphviz
before_install: - python3-pytest
- pip3 install pytest
script: script:
- .travis/all-tests.sh - .travis/all-tests.sh
- os: linux - os: linux
@ -83,8 +80,7 @@ matrix:
- libssl-dev - libssl-dev
- doxygen - doxygen
- graphviz - graphviz
before_install: - python3-pytest
- pip3 install pytest
script: script:
- .travis/all-tests.sh - .travis/all-tests.sh
- os: osx - os: osx
@ -95,6 +91,7 @@ matrix:
before_install: before_install:
- brew update - brew update
- brew install doxygen graphviz - brew install doxygen graphviz
- pip3 install pytest
script: script:
- .travis/all-tests.sh - .travis/all-tests.sh
- os: osx - os: osx