-
Notifications
You must be signed in to change notification settings - Fork 21
36 lines (30 loc) · 972 Bytes
/
pytest.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
name: pytest
on:
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install LTTng
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo apt-add-repository ppa:lttng/stable-2.13
sudo apt-get update
sudo apt-get install -y python3-babeltrace python3-lttng python3-bt2
shell: bash
- name: ROSDEP install
run: |
sudo apt-get install -y python3-rosdep
# sudo rosdep init
rosdep update
rosdep install -i --from-paths . -y --rosdistro humble
- name: Install dependent packages
run: python3 -m pip install -r src/requirements.txt
- name: Run pytest
run: |
. /opt/ros/humble/setup.sh
python3 -m pytest