Run Python 3 integration tests.

This commit is contained in:
Itamar Turner-Trauring 2021-05-13 10:25:48 -04:00
parent 914f1d171c
commit dc7caa00c5

View File

@ -182,6 +182,9 @@ jobs:
- windows-latest
python-version:
- 2.7
include:
- os: ubuntu-latest
python-version: 3.6
steps:
@ -239,9 +242,14 @@ jobs:
- name: Display tool versions
run: python misc/build_helpers/show-tool-versions.py
- name: Run "tox -e integration"
- name: Run "Python 2 integration tests"
if: ${{ matrix.python-version == '2.7' }}
run: tox -e integration
- name: Run "Python 3 integration tests"
if: ${{ matrix.python-version != '2.7' }}
run: tox -e integration3
- name: Upload eliot.log in case of failure
uses: actions/upload-artifact@v1
if: failure()