File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ name : IMU Test
2+
3+ on :
4+ pull_request :
5+ paths :
6+ - ' tools/sim/**'
7+
8+ jobs :
9+ test_imu :
10+ name : Test IMU Data
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ with :
15+ submodules : true
16+ - name : Setup Python
17+ uses : actions/setup-python@v4
18+ with :
19+ python-version : ' 3.11'
20+ - name : Install dependencies
21+ run : |
22+ pip install numpy pytest
23+ - name : Test IMU functionality
24+ run : |
25+ python3 -c "
26+ import sys; sys.path.insert(0, '.')
27+ from cereal import messaging
28+ sm = messaging.SubMaster(['accelerometer', 'gyroscope'])
29+ print('IMU services available')
30+ "
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ jobs:
223223 (github.event.pull_request.head.repo.full_name == 'commaai/openpilot'))
224224 && fromJSON('["namespace-profile-amd64-8x16", "namespace-experiments:docker.builds.local-cache=separate"]')
225225 || fromJSON('["ubuntu-24.04"]') }}
226- if : false # FIXME: Started to timeout recently
226+ if : true
227227 steps :
228228 - uses : actions/checkout@v4
229229 with :
You can’t perform that action at this time.
0 commit comments