-
Notifications
You must be signed in to change notification settings - Fork 13
64 lines (52 loc) · 1.94 KB
/
integration-test.yaml
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
name: Perform test database build and verification
on:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
build:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: [3.9]
TANGOS_TESTING_DB_BACKEND: [sqlite]
runs-on: ${{ matrix.os }}
env:
C: gcc-10
CXX: g++-10
steps:
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- name: Update python pip/setuptools/wheel
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Build and install tangos
run: |
pip install -e .
- name: Install latest pynbody
run: python -m pip install pynbody
- name: Install latest yt
run: python -m pip install yt
- name: Build test database
working-directory: test_tutorial_build
run: export INTEGRATION_TESTING=1; bash build.sh
- uses: actions/upload-artifact@v2
with:
name: Tangos database
path: test_tutorial_build/data.db
- name: Verify database
working-directory: test_tutorial_build
run: |
wget https://zenodo.org/record/10051592/files/reference_database.db?download=1 -O reference_database.db -nv
tangos diff data.db reference_database.db --property-tolerance dm_density_profile 1e-2 0 --property-tolerance gas_map 1e-2 0 --property-tolerance gas_map_sideon 1e-2 0 --property-tolerance gas_map_faceon 1e-2 0
# --property-tolerance dm_density_profile here is because if a single particle crosses between bins
# (which seems to happen due to differing library versions), the profile can change by this much
#
# Images also occasionally differ by one or two particles. To deal with this previously had:
# --ignore-value-of gas_map gas_map_faceon gas_map_sideon uvi_image uvi_image_sideon uvi_image_faceon