-
Notifications
You must be signed in to change notification settings - Fork 12
72 lines (55 loc) · 1.65 KB
/
python-app.yml
File metadata and controls
72 lines (55 loc) · 1.65 KB
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
69
70
71
72
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches:
- main
- develop
- develop_tmp
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
# The following command allows to connect to the ci-container via ssh
# very useful for debugging
# move this step before the failing step
# source: https://github.com/marketplace/actions/debugging-with-tmate
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Installing requirements
run: |
# install this package
pwd
pip install -r requirements.txt
- name: install package
run: |
# install in editable mode -> simplify the discovery of the (internal) test data
pip install -e .
- name: run all tests (without optional dependencies)
run: |
pytest -rs
- name: install optional dependencies
run: |
pip install casadi
- name: run those tests which require optional dependencies
run: |
pytest -rs --opt-dep
# from drone.yml
# - ls symbtools
# - - ls symbtools/test
# - - python symbtools/test/run_all_tests.py all
# - - pip install control casadi
# - - python symbtools/test/run_all_tests.py optdep