Skip to content

Commit

Permalink
Fix test framework and python version
Browse files Browse the repository at this point in the history
  • Loading branch information
HastingsGreer authored Dec 8, 2023
1 parent b5d74c8 commit 04db46a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/selfhosted-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Test with unittest
pip install -e .
pip install pytest
- name: Test with pytest
run: |
python -m unittest discover
pytest

0 comments on commit 04db46a

Please sign in to comment.