-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (57 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
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@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
export CUDA_VISIBLE_DEVICES=""
python -m pip install --upgrade pip
python -m pip install poetry
poetry env use python
poetry install --extras "healpy_support" --extras "pytorch_support"
poetry run python -m pip install torch==2.1.0+cpu torchaudio==2.1.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
- name: List files and check Python and package versions
run: |
poetry env use python
poetry run python -c 'import sys; print(sys.version_info[:])'
poetry run python -m pip freeze
poetry run python -c "import torch; print(torch.version.cuda)"
- name: Run tests with numpy backend
run: |
poetry env use python
export PYRECEST_BACKEND=numpy
poetry run python -m pytest --rootdir . -v --strict-config --junitxml=junit_test_results_numpy.xml ./pyrecest
env:
PYTHONPATH: ${{ github.workspace }}
- name: Run tests with pytorch backend
if: always()
run: |
poetry env use python
export PYRECEST_BACKEND=pytorch
poetry run python -m pytest --rootdir . -v --strict-config --junitxml=junit_test_results_pytorch.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_numpy.xml
junit_test_results_pytorch.xml