Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 07e3579

Browse files
committedApr 27, 2024·
fix ci
1 parent 591b277 commit 07e3579

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed
 

‎.github/workflows/test_macos.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@ jobs:
1515
- name: pip upgrade
1616
run: |
1717
python3 -m pip install --upgrade pip & pip3 install --upgrade setuptools
18-
- name: Install six
19-
run: |
20-
pip3 install hangulize
2118
- name: Install kss locally
2219
run: |
23-
pip3 install .
20+
pip3 install six && pip3 install .
2421
- name: Run the test suite
2522
run: |
2623
pytest -v

‎.github/workflows/test_ubuntu.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@ jobs:
1515
- name: pip upgrade
1616
run: |
1717
python3 -m pip install --upgrade pip & pip3 install --upgrade setuptools
18-
- name: Install six
19-
run: |
20-
pip3 install hangulize
2118
- name: Install kss locally
2219
run: |
23-
pip3 install .
20+
pip3 install six && pip3 install .
2421
- name: Run the test suite
2522
run: |
2623
pytest -v

‎.github/workflows/test_windows.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@ jobs:
1515
- name: pip upgrade
1616
run: |
1717
python3 -m pip install --upgrade pip & pip3 install --upgrade setuptools
18-
- name: Install six
19-
run: |
20-
pip3 install hangulize
2118
- name: Install kss locally
2219
run: |
23-
pip3 install .
20+
pip3 install six && pip3 install .
2421
- name: Run the test suite
2522
run: |
2623
pytest -v

0 commit comments

Comments
 (0)
Please sign in to comment.