-
Notifications
You must be signed in to change notification settings - Fork 7
/
.continuousrc
30 lines (23 loc) · 937 Bytes
/
.continuousrc
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
#######################
### Common settings ###
#######################
# A space separated list of extra packages to be installed.
# This will be passed to the system package manager, normally apt-get.
# Example: "subversion libjpeg-dev"
EXTRA_PACKAGES=""
################################
### Python-specific settings ###
################################
# The pip reqirements file relative to your project root directory.
# (Optional, but most likely needed for all but the simplest projects)
# Example: "requirements.txt"
PIP_REQUIREMENTS=""
# Disable coverage
DISABLE_COVERAGE=1
# Disable jslint
DISABLE_JSLINT=1
# The command used to run this project's tests. If specified, this setting
# will override MANAGE_COMMAND.
# Example: "./runmytests.py"
# (Will attempt to auto-detect if blank)
TEST_COMMAND="$ENV_DIR/bin/pip uninstall -y webstore && $ENV_DIR/bin/python ./setup.py nosetests --with-xunit --xunit-file=results.xml"