-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1.17 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
name: Tests
on:
pull_request:
branches:
- main
jobs:
lightcurve_tests:
uses: ./.github/workflows/test_template.yaml
with:
python-version: '3.11'
sources-folder: 'src'
test-folder: 'tests'
base-folder: 'lightcurve'
secrets:
GH_TOKEN: '${{ secrets.ADMIN_TOKEN }}'
astroobject_unittests:
uses: ./.github/workflows/test_template.yaml
with:
python-version: '3.11'
sources-folder: 'astroobject'
test-folder: 'tests/unittests'
base-folder: 'astroobject'
secrets:
GH_TOKEN: '${{ secrets.ADMIN_TOKEN }}'
astroobject_integration_tests:
uses: ./.github/workflows/test_template.yaml
with:
python-version: '3.11'
sources-folder: 'astroobject'
test-folder: 'tests/integration'
base-folder: 'astroobject'
codecov-flags: ""
secrets:
GH_TOKEN: '${{ secrets.ADMIN_TOKEN }}'
xmatch_tests:
uses: ./.github/workflows/test_template.yaml
with:
python-version: '3.11'
sources-folder: 'src'
test-folder: 'tests'
base-folder: 'xmatch-service'
secrets:
GH_TOKEN: '${{ secrets.ADMIN_TOKEN }}'