-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (70 loc) · 2.3 KB
/
Copy pathtests.yaml
File metadata and controls
82 lines (70 loc) · 2.3 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Test Pull Request into main with diffsky@main
on:
push:
branches:
- main
pull_request: null
jobs:
tests:
name: tests
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.11
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
- name: configure conda and install code
shell: bash -l {0}
run: |
conda config --set always_yes yes
conda install --quiet \
--file=requirements.txt
conda install -y -q \
flake8 \
pytest \
pytest-xdist \
pytest-cov \
pip \
setuptools \
"setuptools_scm>=7,<8" \
scipy \
python-build
pip uninstall diffsky --yes
pip install --no-deps git+https://github.com/ArgonneCPAC/diffsky.git@main
pip uninstall diffhalos --yes
pip install --no-deps git+https://github.com/ArgonneCPAC/diffhalos.git@main
python -m pip install --no-build-isolation --no-deps -e .
- name: test
shell: bash -l {0}
run: |
pytest -v diffhtwo --cov --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: test versions
shell: bash -el {0}
run: |
pip uninstall diffhtwo --yes
[[ $(python setup.py --version) != "0.0.0" ]] || exit 1
rm -rf dist/*
python setup.py sdist
pip install --no-deps --no-build-isolation dist/*.tar.gz
pushd ..
python -c "import diffhtwo; assert diffhtwo.__version__ != '0.0.0'"
popd
pip uninstall diffhtwo --yes
rm -rf dist/*
python -m build --sdist . --outdir dist
pip install --no-deps --no-build-isolation dist/*.tar.gz
pushd ..
python -c "import diffhtwo; assert diffhtwo.__version__ != '0.0.0'"
popd
pip uninstall diffhtwo --yes
python -m pip install -v --no-deps --no-build-isolation -e .