We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ddaa41 commit df9962bCopy full SHA for df9962b
.coveragerc
@@ -0,0 +1,9 @@
1
+[run]
2
+source =
3
+ ometa
4
+ parsley.py
5
+ examples/parsley_json.py
6
+ examples/protocol/netstrings.py
7
+omit =
8
+ ometa/_generated/*
9
+ *test*.py
.travis.yml
@@ -0,0 +1,13 @@
+language: python
+python:
+ - "2.6"
+ - "2.7"
+
+install:
+ - "pip install pytest Twisted python-coveralls --use-mirrors"
+script:
+ - "coverage run $(which trial) ometa"
10
+ - "coverage run -a $(which trial) test_parsley"
11
+ - "coverage run -a $(which py.test) examples"
12
+after_success:
13
+ - "coveralls"
0 commit comments