-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (56 loc) · 1.51 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
68
name: tests
on:
push:
branches:
- main
pull_request: null
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: tests
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.11
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
miniforge-variant: Mambaforge
environment-file: environment.yaml
- name: configure conda and install code
shell: bash -l {0}
run: |
python -m pip install -e . -vv
- name: run cli
shell: bash -l {0}
run: |
eastlake-swarp -dd
eastlake-src-extractor -dd
run-eastlake-sim --help
- name: test eastlake
shell: bash -l {0}
run: |
git clone https://github.com/beckermr/des-test-data
export TEST_DESDATA=`pwd`/des-test-data
pytest -vvs eastlake
- name: test piff
shell: bash -l {0}
run: |
cd piff_package/tests
coverage run -m pytest -v
- name: lint
shell: bash -l {0}
run: |
flake8 eastlake