Skip to content

Commit dafdbea

Browse files
committed
fix ci
1 parent 7a877cb commit dafdbea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .github/workflows/test_macos.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python3 -m pip install --upgrade pip & pip3 install --upgrade setuptools
1919
- name: Install kss locally
2020
run: |
21-
pip3 install . --ignore-installed six
21+
python setup.py install
2222
- name: Run the test suite
2323
run: |
2424
pytest -v

Diff for: .github/workflows/test_ubuntu.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python3 -m pip install --upgrade pip & pip3 install --upgrade setuptools
1919
- name: Install kss locally
2020
run: |
21-
pip3 install . --ignore-installed six
21+
python setup.py install
2222
- name: Run the test suite
2323
run: |
2424
pytest -v

Diff for: .github/workflows/test_windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python3 -m pip install --upgrade pip & pip3 install --upgrade setuptools
1919
- name: Install kss locally
2020
run: |
21-
pip3 install . --ignore-installed six
21+
python setup.py install
2222
- name: Run the test suite
2323
run: |
2424
pytest -v

0 commit comments

Comments
 (0)