Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit aa009d0

Browse files
committedJul 22, 2015
Merge pull request dronekit#214 from diydrones/tcr-testssitl
Allows python -m tests.sitl invocation.
2 parents 864f941 + 613e75b commit aa009d0

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ script:
1313
- (a; sudo python setup.py install );z
1414
- (a; nosetests tests/web );z
1515
- (a; nosetests tests/unit );z
16-
- (a; cd tests; python -um sitl );z
16+
- (a; python -m tests.sitl );z
1717
git:
1818
depth: 10
1919
language: objective-c

‎appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build_script:
2424
- cmd: 'setlocal & python setup.py install & endlocal'
2525
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & nosetests tests\\web & endlocal"
2626
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & nosetests tests\\unit & endlocal"
27-
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & cd tests & python -um sitl & endlocal"
27+
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & python -m tests.sitl & endlocal"
2828
clone_depth: 10
2929
test: 'off'
3030
branches:

‎circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
environment: {}
1212
- nosetests tests/unit:
1313
environment: {}
14-
- cd tests; python -um sitl:
14+
- python -m tests.sitl:
1515
environment: {}
1616
pre:
1717
- pip2 install nose psutil mock:

‎tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)
This repository has been archived.