Commit 462d074 1 parent 623ab6f commit 462d074 Copy full SHA for 462d074
File tree 3 files changed +3
-8
lines changed
3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,12 @@ jobs:
48
48
49
49
- name : 📦 Install webviz-config with dependencies
50
50
run : |
51
- pip install 'pandas==${{ matrix.pandas-version }}'
52
51
pip install --upgrade pip
53
- pip install .
52
+ pip install --use-feature=2020-resolver . 'pandas==${{ matrix.pandas-version }}'
54
53
55
54
- name : 📦 Install test dependencies
56
55
run : |
57
- pip install .[tests]
58
- pip install dash[testing]
56
+ pip install --use-feature=2020-resolver .[tests]
59
57
wget https://chromedriver.storage.googleapis.com/$(wget https://chromedriver.storage.googleapis.com/LATEST_RELEASE -q -O -)/chromedriver_linux64.zip
60
58
unzip chromedriver_linux64.zip
61
59
Original file line number Diff line number Diff line change @@ -492,11 +492,7 @@ To run tests it is necessary to first install the [selenium chrome driver](https
492
492
Then install the Python development requirements :
493
493
` ` ` bash
494
494
pip install .[tests]
495
- pip install dash[testing]
496
495
` ` `
497
- The second of these commands appears to be necessary as long as
498
- [this `pip` issue is open](https://github.com/pypa/pip/issues/4957).
499
-
500
496
You can then run the tests using
501
497
` ` ` bash
502
498
pytest tests --forked
Original file line number Diff line number Diff line change 6
6
TESTS_REQUIRES = [
7
7
"bandit" ,
8
8
"black" ,
9
+ "dash[testing]" ,
9
10
"jsonschema" ,
10
11
"mock" ,
11
12
"mypy" ,
You can’t perform that action at this time.
0 commit comments