Skip to content

Commit 8ceea4a

Browse files
author
Dan Lewis-Toakley
committed
added travisci config and code coverage
1 parent 042589c commit 8ceea4a

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/
2+
.coverage
23
bin/
34
include/
45
lib/

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: python
2+
python:
3+
- "3.6.3"
4+
cache: pip
5+
install:
6+
- pip install -r requirements.txt
7+
script:
8+
- coverage run --source EmoPy --omit "*test*" EmoPy/tests/run_all.py
9+
- coverage report -m

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
],
2121
python_requires='>=3.6.3',
2222
install_requires=[
23+
'coverage==4.5.3',
2324
'keras>=2.2.0',
2425
'lasagne',
2526
'pytest',

0 commit comments

Comments
 (0)