-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.2 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: Test workflow
permissions: read-all
on: # yamllint disable-line rule:truthy
push:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --extras healpy_support
- name: List files and check Python and package versions
run: |
ls -al
python -c 'import sys; print(sys.version_info[:])'
python -m pip freeze
- name: Run tests
run: |
poetry env use python
poetry run python -m pytest --rootdir . -v --strict-config --junitxml=junit_test_results.xml ./pyrecest
env:
PYTHONPATH: ${{ github.workspace }}
- name: Publish test results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: junit_test_results.xml