We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042589c commit 8ceea4aCopy full SHA for 8ceea4a
.gitignore
@@ -1,4 +1,5 @@
1
.idea/
2
+.coverage
3
bin/
4
include/
5
lib/
.travis.yml
@@ -0,0 +1,9 @@
+language: python
+python:
+ - "3.6.3"
+cache: pip
+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
@@ -20,6 +20,7 @@
20
],
21
python_requires='>=3.6.3',
22
install_requires=[
23
+ 'coverage==4.5.3',
24
'keras>=2.2.0',
25
'lasagne',
26
'pytest',
0 commit comments