|
| 1 | +version: 2.1 |
| 2 | + |
| 3 | +jobs: |
| 4 | + unittests-py38: |
| 5 | + docker: |
| 6 | + - image: python:3.8.16-bullseye |
| 7 | + steps: |
| 8 | + - run: git config --global --add safe.directory /tmp/_circleci_local_build_repo |
| 9 | + - checkout |
| 10 | + - run: pip install -r dev_requirements.txt |
| 11 | + - run: pytest tests/unittests --verbose --full-trace |
| 12 | + unittests-py311: |
| 13 | + docker: |
| 14 | + - image: python:3.11.3-bullseye |
| 15 | + steps: |
| 16 | + - run: git config --global --add safe.directory /tmp/_circleci_local_build_repo |
| 17 | + - checkout |
| 18 | + - run: pip install -r dev_requirements.txt |
| 19 | + - run: pytest tests/unittests --verbose --full-trace |
| 20 | + integrationtests-py38: |
| 21 | + docker: |
| 22 | + - image: python:3.8.16-bullseye |
| 23 | + steps: |
| 24 | + - run: git config --global --add safe.directory /tmp/_circleci_local_build_repo |
| 25 | + - checkout |
| 26 | + - run: pip install -r dev_requirements.txt |
| 27 | + - run: pytest tests/integrationtests --verbose --full-trace |
| 28 | + integrationtests-py311: |
| 29 | + docker: |
| 30 | + - image: python:3.11.3-bullseye |
| 31 | + steps: |
| 32 | + - run: git config --global --add safe.directory /tmp/_circleci_local_build_repo |
| 33 | + - checkout |
| 34 | + - run: pip install -r dev_requirements.txt |
| 35 | + - run: pytest tests/integrationtests --verbose --full-trace |
| 36 | + e2etests-chrome106-py38: |
| 37 | + docker: |
| 38 | + - image: matseymour/chrome-python:106.0.5249.61-3.8.16 |
| 39 | + steps: |
| 40 | + - run: git config --global --add safe.directory /tmp/_circleci_local_build_repo |
| 41 | + - checkout |
| 42 | + - run: pip install -r dev_requirements.txt |
| 43 | + - run: tini -s -- xvfb-run pytest tests/e2etests --verbose --full-trace |
| 44 | + e2etests-chrome112-py311: |
| 45 | + docker: |
| 46 | + - image: matseymour/chrome-python:112.0.5615.121-3.11.3 |
| 47 | + steps: |
| 48 | + - run: git config --global --add safe.directory /tmp/_circleci_local_build_repo |
| 49 | + - checkout |
| 50 | + - run: pip install -r dev_requirements.txt |
| 51 | + - run: tini -s -- xvfb-run pytest tests/e2etests --verbose --full-trace |
| 52 | +workflows: |
| 53 | + test: |
| 54 | + jobs: |
| 55 | + - unittests-py38 |
| 56 | + - unittests-py311 |
| 57 | + - integrationtests-py38 |
| 58 | + - integrationtests-py311 |
| 59 | + - e2etests-chrome106-py38 |
| 60 | + - e2etests-chrome112-py311 |
0 commit comments