summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.scrutinizer.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.scrutinizer.yml b/.scrutinizer.yml
index 98a734c..1ea545f 100644
--- a/.scrutinizer.yml
+++ b/.scrutinizer.yml
@@ -1,7 +1,11 @@
+# This file contains the configuration for Scrutinizer-CI, a tool we use for software quality.
+
build:
+ # We will be running our tests in Python 2.7.7
environment:
python: 2.7.7
+ # Install development dependencies.
dependencies:
override:
- 'pip install -r requirements-dev.txt'
@@ -9,9 +13,10 @@ build:
tests:
override:
+ # Following command generates .coverage file, the output of the "coverage" tool.
-
command: coverage run unitTests.py
- coverage:
+ coverage: # This section instructs Scrutinizer-CI this command produces test coverage output.
file: '.coverage'
format: 'py-cc'