Skip to content

Commit

Permalink
Add macos filter for tox
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Medvedev committed Dec 21, 2023
1 parent aa54510 commit ac85e3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ jobs:
run: |
gtimeout 60 bash -c 'while ! wget -O /dev/null -T 1 http://localhost:4444/readyz; do echo waiting for selenium server; sleep 1; done' || (cat selenium-standalone.log && exit 2)
tox -e tests_macos_selenium -- -m macos -n 1 tests/test_webdriver_remote.py;
tox -e tests_macos_selenium -- -n 1 tests/test_webdriver_remote.py;
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extras = selenium
deps =
-rrequirements/test.txt
commands=
pytest --ignore-flaky -v {posargs}
pytest --ignore-flaky -m "not macos" -v {posargs}


[testenv:tests_windows_selenium]
Expand All @@ -27,4 +27,4 @@ extras = selenium
deps =
-rrequirements/test.txt
commands=
pytest --ignore-flaky -v {posargs}
pytest --ignore-flaky -m macos -v {posargs}

0 comments on commit ac85e3a

Please sign in to comment.