Skip to content

Commit b7bc38f

Browse files
committed
removing unneeded steps
1 parent 6b1ee49 commit b7bc38f

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/python-test.yml

+3-13
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,9 @@ jobs:
3535
run: |
3636
source venv/bin/activate
3737
pip install --upgrade pip
38-
pip install pydelphin==1.4.0 # This will install both delphin and ace
39-
40-
# Ensure that ace can be imported from Python
41-
- name: Test Python import
42-
run: |
43-
source venv/bin/activate
44-
python -m pip show pydelphin
45-
python -m pip freeze
46-
python -c "from delphin import ace; print('ace imported successfully')"
47-
export GITHUB_PATH=$GITHUB_PATH:$PWD/venv/bin
48-
export PATH=$PATH:$PWD/venv/bin
38+
pip install pydelphin==1.4.0
4939
50-
- name: Attempting ace curl
40+
- name: Install ace (download tar and move executable to virtual bin)
5141
run: |
5242
source venv/bin/activate
5343
TAR_URL="https://sweaglesw.org/linguistics/ace/download/ace-0.9.34-x86-64.tar.gz"
@@ -57,7 +47,7 @@ jobs:
5747
chmod +x /tmp/extracted/ace-0.9.34/ace
5848
sudo mv /tmp/extracted/ace-0.9.34/ace $VIRTUAL_ENV/bin/ace
5949
60-
# Run your tests that use ace
50+
# Run regression test suite
6151
- name: Test
6252
id: run-tests
6353
run: |

0 commit comments

Comments
 (0)