Skip to content

Commit b122350

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 3092991 + a3900ac commit b122350

11 files changed

+547
-167
lines changed

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ install:
2020
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn numba pandas bokeh holoviews datashader scikit-image pytest"
2121
- activate test-environment
2222
- pip install "tensorflow>=2.1"
23+
- pip install pytest-benchmark
2324
- pip install -e .
2425

2526
test_script:

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
displayName: 'Install package'
3838
3939
- script: |
40-
pip install pytest
40+
pip install pytest pytest-benchmark
4141
pytest --show-capture=no -v --disable-warnings --junitxml=pytest.xml
4242
displayName: 'Run tests'
4343
@@ -77,7 +77,7 @@ jobs:
7777
displayName: 'Install package'
7878
7979
- script: |
80-
pip install pytest
80+
pip install pytest pytest-benchmark
8181
pytest --show-capture=no -v --disable-warnings --junitxml=pytest.xml
8282
displayName: 'Run tests'
8383
@@ -117,7 +117,7 @@ jobs:
117117
displayName: 'Install package'
118118
119119
- script: |
120-
pip install pytest
120+
pip install pytest pytest-benchmark
121121
pytest --show-capture=no -v --disable-warnings --junitxml=pytest.xml
122122
displayName: 'Run tests'
123123
@@ -150,7 +150,7 @@ jobs:
150150
pip install -e .
151151
pip install .[plot]
152152
pip install .[parametric_umap]
153-
pip install pytest
153+
pip install pytest pytest-benchmark
154154
pip install pytest-cov
155155
pip install coveralls
156156
displayName: 'Install package'

ci_scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [[ "$DISTRIB" == "conda" ]]; then
5050
conda install --yes "tensorflow>=2.0.0"
5151
else
5252
conda create -q -n testenv --yes python=$PYTHON_VERSION numpy scipy scikit-learn \
53-
numba pandas bokeh holoviews datashader scikit-image pytest \
53+
numba pandas bokeh holoviews datashader scikit-image pytest pytest-benchmark \
5454
"tensorflow-mkl>=2.2.0"
5555
fi
5656

@@ -64,7 +64,7 @@ if [[ "$DISTRIB" == "conda" ]]; then
6464

6565
if [[ "$COVERAGE" == "true" ]]; then
6666
pip install coverage coveralls
67-
pip install pytest-cov # pytest coverage plugin
67+
pip install pytest-cov pytest-benchmark # pytest coverage plugin
6868
fi
6969

7070
python --version

0 commit comments

Comments
 (0)