Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit dcdb528

Browse files
committedDec 6, 2024·
Merge remote-tracking branch 'origin/molly/setup-automation' into molly/setup-automation
2 parents e0ad013 + 1d57c37 commit dcdb528

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed
 

‎.github/workflows/python-package.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
python -m pip install --upgrade build
30+
python -m pip install pipenv
3131
# python -m pip install flake8 pytest
3232
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3333
# - name: Lint with flake8
@@ -39,10 +39,8 @@ jobs:
3939
- name: Test with unittest
4040
run: |
4141
cd packages/pythonlab_setup
42-
python -m build
42+
pipenv install
4343
cd pythonlab_setup
44-
python -m unittest
45-
pwd
46-
cd .
47-
pwd
48-
# python -m unittest packages/unittest_runner
44+
pipenv run python -m unittest
45+
cd ../..
46+
# Repeat install and run unit tests for any other packages with tests.

0 commit comments

Comments
 (0)