Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use psutil logical for test examples #1404

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
- name: unit tests geo
run: pytest -v hvplot --geo --cov=hvplot --cov-append
- name: examples tests
run: pytest -n auto --dist loadscope --nbval-lax -p no:python
run: pytest -n logical --dist loadscope --nbval-lax -p no:python
pip_test:
name: pip tests:${{ matrix.os }}:${{ matrix.python-version }}
needs: [pre_commit, setup]
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
- name: unit tests geo
run: pytest -v hvplot --geo --cov=hvplot --cov-append
- name: examples tests
run: pytest -n auto --dist loadscope --nbval-lax -p no:python
run: pytest -n logical --dist loadscope --nbval-lax -p no:python
- name: Upload coverage reports to Codecov
if: github.event_name == 'push' || github.event_name == 'pull_request'
uses: codecov/codecov-action@v4
Expand Down
1 change: 1 addition & 0 deletions envs/py3.10-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ dependencies:
- pooch
- pooch>=1.6.0
- pre-commit
- psutil
- pygraphviz
- pyproj
- pytest
Expand Down
1 change: 1 addition & 0 deletions envs/py3.11-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ dependencies:
- pooch
- pooch>=1.6.0
- pre-commit
- psutil
- pygraphviz
- pyproj
- pytest
Expand Down
1 change: 1 addition & 0 deletions envs/py3.12-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ dependencies:
- pooch
- pooch>=1.6.0
- pre-commit
- psutil
- pygraphviz
- pyproj
- pytest
Expand Down
1 change: 1 addition & 0 deletions envs/py3.9-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ dependencies:
- pooch
- pooch>=1.6.0
- pre-commit
- psutil
- pygraphviz
- pyproj
- pytest
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ tests-core = [
"scipy",
"xarray",
"bokeh_sampledata; python_version >= '3.10'",
"psutil",
]
# Optional tests dependencies, i.e. one should be able
# to run and pass the test suite without installing any
Expand Down
Loading