Skip to content

Commit 8d75a89

Browse files
committed
git workflow WIP - no webapp test
1 parent f2d4a88 commit 8d75a89

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/pytest.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python-version: ${{ matrix.python-version }}
4545

4646
# Restore venv or cache it (note: trailing "-" in restore-keys means: match anything after it. Also, cached version is stored in GiHub storage, not on the testing VM)
47-
- name: Cache virtualenv
47+
- name: Restore cached virtualenv (if any)
4848
uses: actions/cache@v3
4949
with:
5050
path: venv
@@ -80,11 +80,11 @@ jobs:
8080
source venv/bin/activate
8181
pytest --ignore=./tests/tmp/ -xvvv ./tests/smtk
8282
83-
# Run Django migrations and pytest
84-
- name: Test eGSIM (web app)
85-
run: |
86-
source venv/bin/activate
87-
export DJANGO_SETTINGS_MODULE=${SETTINGS_MODULE}
88-
python manage.py migrate
89-
python manage.py egsim-init --no-input
90-
pytest --ignore=./tests/tmp/ -xvvv ./tests/django
83+
# # Run Django migrations and pytest
84+
# - name: Test eGSIM (web app)
85+
# run: |
86+
# source venv/bin/activate
87+
# export DJANGO_SETTINGS_MODULE=${SETTINGS_MODULE}
88+
# python manage.py migrate
89+
# python manage.py egsim-init --no-input
90+
# pytest --ignore=./tests/tmp/ -xvvv ./tests/django

0 commit comments

Comments
 (0)