forked from ArduPilot/MethodicConfigurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (34 loc) · 739 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (34 loc) · 739 Bytes
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
services:
dev:
build: .
volumes:
- .:/app
- sitl-cache:/app/sitl-cache
working_dir: /app
stdin_open: true
tty: true
command: bash
test:
build: .
volumes:
- .:/app
working_dir: /app
command: pytest tests/ -v -m "not sitl and not integration"
sitl:
build: .
volumes:
- .:/app
- sitl-cache:/app/sitl-cache
working_dir: /app
command: >
bash -c "./scripts/run_sitl_tests.sh download &&
./scripts/run_sitl_tests.sh test"
lint:
build: .
volumes:
- .:/app
working_dir: /app
command: >
bash -c "ruff format && ruff check . && pyright && pylint ardupilot_methodic_configurator/"
volumes:
sitl-cache: