-
Notifications
You must be signed in to change notification settings - Fork 48
46 lines (42 loc) · 1.53 KB
/
run_tests.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
name: Python tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run tests on ${{ matrix.os }} with Python ${{ matrix.python }}
strategy:
matrix:
os: [ubuntu-latest]
python: ['3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install testing and linting dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-timeout pytest-cov
pip install flake8 black
pip install -e .
pip install brax torch torchvision gymnax
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 ./evosax --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 ./evosax --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run unit/integration tests
run: |
python -m pytest --all -vv --durations=0 --cov=./ --cov-report=term-missing --cov-report=xml
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)