-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,35 @@ | ||
name: Python package | ||
on: [push] | ||
jobs: | ||
build: | ||
# .github/workflows/test.yml | ||
name: PyTest | ||
on: push | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.11"] | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Python # Set Python version | ||
uses: actions/setup-python@v4 | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
# Setup Python (faster than using Python container) | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# Install pip and pytest | ||
- name: Install dependencies | ||
python-version: "3.11" | ||
|
||
- name: Install pipenv | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pytest | ||
- name: Test with pytest | ||
run: cd src && pytest tests.py --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml | ||
- name: Upload pytest test results | ||
uses: actions/upload-artifact@v3 | ||
python -m pip install --upgrade pipenv wheel | ||
id: cache-pipenv | ||
uses: actions/cache@v1 | ||
with: | ||
name: pytest-results-${{ matrix.python-version }} | ||
path: junit/test-results-${{ matrix.python-version }}.xml | ||
# Use always() to always run this step to publish test results when there are test failures | ||
if: ${{ always() }} | ||
path: ~/.local/share/virtualenvs | ||
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} | ||
|
||
- name: Install dependencies | ||
if: steps.cache-pipenv.outputs.cache-hit != 'true' | ||
run: pipenv install --dev | ||
|
||
- name: Run PyTest | ||
run: pytest | ||
working-directory: src |