Skip to content

Commit

Permalink
debugging broken unit test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jkppr committed Nov 27, 2024
1 parent 3724c20 commit 751a956
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
os: [ubuntu-20.04, ubuntu-22.04]
python-version: ['3.9', '3.10']
steps:
- name: Clean virtualenv
run: rm -rf /home/runner/.local/share/virtualenvs/timesketch-*
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
Expand All @@ -25,6 +27,8 @@ jobs:
pipenv install -r test_requirements.txt
- name: Run unit tests
run: |
pipenv --venv
pipenv run pip freeze | grep pytest
pipenv run python run_tests.py
# Frontend tests (VueJS)
Expand Down

0 comments on commit 751a956

Please sign in to comment.