summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCengiz Kaygusuz <cngkaygusuz@gmail.com>2017-12-15 15:19:44 -0500
committerCengiz Kaygusuz <cngkaygusuz@gmail.com>2017-12-15 15:19:44 -0500
commit5eea627d46beb0f5bd41d28cf29b85918d35a4d9 (patch)
tree3b1e1a7fd0d6742233f73cee4304ec51e5233e50
parent6335269a714b2888c7d2c081d6d2258994ee6699 (diff)
downloadpyparsing-git-5eea627d46beb0f5bd41d28cf29b85918d35a4d9.tar.gz
Commentate .scrutinzer.yml
-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'