Skip to content

Commit

Permalink
Rework operating system checks
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Aug 24, 2023
1 parent 027cf3b commit 40a4e81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
run: pip install .

- name: Run tests
run: python -m pytest -v --timeout=300 --webdriver=ChromeHeadless --durations=100 test
run: python -m pytest -v --timeout=300 --webdriver=ChromeHeadless --durations=100 test -x
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"asv-runner>=v0.0.9",
"json5",
"tabulate",
"colorama; os_name == 'nt'",
"colorama; platform_system == 'Windows'",
"pyyaml; platform_python_implementation != \"PyPy\"",
"pympler; platform_python_implementation != \"PyPy\"",
]
Expand All @@ -53,8 +53,8 @@ test = [
"feedparser",
"selenium",
"pytest-rerunfailures",
"python-hglib",
"rpy2"; platform_system!='Windows' and platform_python_implementation != 'PyPy'"
"python-hglib; platform_system != 'Windows'",
"rpy2; platform_system != 'Windows' and platform_python_implementation != 'PyPy'",
]
doc = [
"sphinx",
Expand Down

0 comments on commit 40a4e81

Please sign in to comment.