Skip to content

Commit 2de5a73

Browse files
committed
Allows python -m tests.sitl invocation.
1 parent 2f61adc commit 2de5a73

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install:
1212
script:
1313
- (a; sudo python setup.py install );z
1414
- (a; nosetests tests/web );z
15-
- (a; cd tests; python -um sitl );z
15+
- (a; python -m tests.sitl );z
1616
git:
1717
depth: 10
1818
language: objective-c

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ install:
2323
build_script:
2424
- cmd: 'setlocal & python setup.py install & endlocal'
2525
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & nosetests tests\\web & endlocal"
26-
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & cd tests & python -um sitl & endlocal"
26+
- cmd: "setlocal & SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH% & python -m tests.sitl & endlocal"
2727
clone_depth: 10
2828
test: 'off'
2929
branches:

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
environment: {}
1010
- nosetests tests/web:
1111
environment: {}
12-
- cd tests; python -um sitl:
12+
- python -m tests.sitl:
1313
environment: {}
1414
pre:
1515
- pip2 install nose psutil:

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)