a556030931
In essence, tests are not an importable submodule anymore but an independent piece of code that won't be installed in a user's site-packages directory.
10 lines
204 B
YAML
10 lines
204 B
YAML
language: python
|
|
python:
|
|
# - "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
# command to install dependencies
|
|
install: "pip install -r requirements.txt --use-mirrors"
|
|
# command to run tests
|
|
script: python test/__main__.py -v
|