Skip to content

Commit fb0f133

Browse files
Add coveralls back.
1 parent 8232a02 commit fb0f133

File tree

3 files changed

+7
-16
lines changed

3 files changed

+7
-16
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,8 @@ jobs:
6060
- <<: *main
6161
env:
6262
- PY_VER: "3.5"
63-
- MYSQL_VER: "5.6"
63+
- MYSQL_VER: "5.6"
64+
- stage: Coverage
65+
after_success:
66+
- pip install python-coveralls
67+
- coveralls

LNX-docker-compose.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@ x-net: &net
55
services:
66
dj:
77
<<: *net
8-
build:
9-
context: .
10-
dockerfile: test.dockerfile
11-
args:
12-
- PY_VER
13-
- ALPINE_VER
8+
image: datajoint/pydev:${PY_VER}-alpine${ALPINE_VER}
149
depends_on:
1510
db:
1611
condition: service_healthy
@@ -34,7 +29,7 @@ services:
3429
command: >
3530
/bin/sh -c
3631
"
37-
pip install --user .;
32+
pip install --user nose nose-cov .;
3833
pip freeze | grep datajoint;
3934
nosetests -vsw tests --with-coverage --cover-package=datajoint;
4035
# jupyter notebook;

test.dockerfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)