Skip to content

Commit 0713ab3

Browse files
authored
Install packages with pip instead of Setuptools in CI (ev-flow#517)
1 parent 87e4b6a commit 0713ab3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ jobs:
4444
python -m pip install click==8.0.3
4545

4646
- name: Install Quark-Engine
47-
run: |
48-
python setup.py build
49-
python setup.py install
47+
run: pip install .
5048

5149
- name: Test with pytest
5250
run: |

.github/workflows/smoke_test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ jobs:
5555
if: matrix.os == 'macOS-latest'
5656

5757
- name: Install Quark-Engine
58-
run: |
59-
python setup.py build
60-
python setup.py install
58+
run: pip install .
6159

6260
# Download the latest rule set
6361
- name: Download rule from https://github.com/quark-engine/quark-rules

0 commit comments

Comments
 (0)