Skip to content

Commit be3c07d

Browse files
committed
update github runners to use ./install and ./test
1 parent cf4fd31 commit be3c07d

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

.github/workflows/push_macos.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
${{ runner.os }}-pip-
2525
- name: Install dependencies
2626
run: |
27-
python -m pip install --upgrade pip
28-
python -m pip install .
29-
python -m pip install pytest
30-
- name: Run Tests
27+
./install
28+
- name: Run Test
3129
run: |
32-
pytest tests
30+
./test

.github/workflows/push_ubuntu.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ jobs:
2424
${{ runner.os }}-pip-
2525
- name: Install dependencies
2626
run: |
27-
python -m pip install --upgrade pip
28-
python -m pip install .
29-
python -m pip install -r requirements.testing.txt
30-
- name: Run Tests
27+
./install
28+
- name: Run Test
3129
run: |
32-
pytest tests
30+
./test
31+

.github/workflows/push_win.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
restore-keys: |
2424
${{ runner.os }}-pip-
2525
- name: Install dependencies
26+
shell: bash
2627
run: |
27-
python -m pip install --upgrade pip
28-
python -m pip install .
29-
python -m pip install pytest
28+
./install
3029
- name: Run Test
30+
shell: bash
3131
run: |
32-
pytest tests
32+
./test

0 commit comments

Comments
 (0)