Skip to content

Commit

Permalink
Enable Python versions matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpasternak committed Aug 7, 2022
1 parent adb95e0 commit ef03a8f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ jobs:

strategy:
matrix:
python-version: ['3.8'] # 2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10',]

steps:
- uses: actions/checkout@v2
- run: firefox --version
- run: geckodriver --version
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand All @@ -25,6 +23,9 @@ jobs:
pip install -e .
pip install -r requirements-testing.txt
- run: firefox --version
- run: geckodriver --version

- name: Run tests, excluding remote tests
run: |
xvfb-run -- pytest --junitxml=test-results/junit.xml --ignore=tests/test_plugin_remote.py
Expand Down

0 comments on commit ef03a8f

Please sign in to comment.