- name: Python 3 integration tests
run: PYTHONPATH=. python3 ./tests/integration_tests.py
+ fedora-32:
+ name: Fedora 32
+ runs-on: ubuntu-latest
+ container: fedora:32
+ steps:
+ - run: |
+ yum -y install \
+ python3 \
+ python3-pytest \
+ python3-pyyaml
+ - uses: actions/checkout@v2
+
+ - name: Python 3 unit tests
+ run: PYTHONPATH=. pytest-3
+ - name: Python 3 integration tests
+ run: PYTHONPATH=. python3 ./tests/integration_tests.py
+
ubuntu-1804:
name: Ubuntu 18.04
runs-on: ubuntu-latest