-
Notifications
You must be signed in to change notification settings - Fork 24
42 lines (38 loc) · 1.29 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
name: Testing
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')"
runs-on: ubuntu-latest
strategy:
matrix:
build_command: ["python setup.py develop",
"pip install .",
"pip install --editable .",
"python setup.py install",
# "echo 'no operation'", # how to test this one?
]
fail-fast: false
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
- name: Install Aurora
run: ${{ matrix.build_command }}
- name: Move to root and try importing Aurora
run: |
cd /
python -c "import aurora; print(aurora.__version__)"
# - name: Test with pytest and coverage
# run: |
# pip install pytest
# pip install pytest-cov
# pytest --junitxml=junit/test-results.xml --cov=aurora --cov-report=xml --cov-report=html