Skip to content

Commit ccaf016

Browse files
committed
deps
1 parent 44d2769 commit ccaf016

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

.github/workflows/main.yaml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,21 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v2
1919

20+
2021
- name: Get number of CPU cores
21-
uses: SimenB/github-actions-cpu-cores@v1
22-
22+
uses: SimenB/github-actions-cpu-cores@v1
23+
2324
- name: Install mamba
24-
uses: mamba-org/setup-micromamba@v2
25-
with:
26-
environment-file: dev-env.yml
27-
environment-name: dev-env
28-
init-shell: >-
29-
bash
30-
25+
uses: mamba-org/setup-micromamba@v2
26+
with:
27+
environment-file: dev-env.yml
28+
environment-name: dev-env
29+
init-shell: >-
30+
bash
31+
32+
- name: Install playwright dependencies
33+
run: sudo playwright install-deps
34+
3135
- name: Install Playwright
3236
shell: bash -el {0}
3337
run: |
@@ -41,7 +45,7 @@ jobs:
4145
- name: Run Tests
4246
shell: bash -el {0}
4347
run: |
44-
pytest -s -vvv
48+
pytest -s -vvvvv
4549
4650
4751
test_with_pip:
@@ -62,8 +66,12 @@ jobs:
6266
shell: bash -el {0}
6367
run: |
6468
python -m pip install .
69+
70+
- name: Install pyjs-code-runner
71+
run: |
72+
sudo playwright install-deps
6573
playwright install
66-
74+
6775
- name: Run Tests
6876
shell: bash -el {0}
6977
run: |

0 commit comments

Comments
 (0)