Skip to content

Commit

Permalink
Don't use Docker on travis
Browse files Browse the repository at this point in the history
* Issues with capabilities and network

(c) Copyright IBM Corp. 2015
  • Loading branch information
parente committed Oct 14, 2015
1 parent 4e91b6a commit f7aed1c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
16 changes: 6 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
sudo: required

language: python

python:
- 2.7
- 3.3
- 3.4

services:
- docker

- 3.5
script:
- make test
- make sdist
- make install
- python setup.py sdist
- pip install --no-use-wheel dist/*.tar.gz
- python -B -m unittest discover
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@

.PHONY: bash clean dev help sdist test


IMAGE:=jupyter/minimal-notebook:4.0

DOCKER_ARGS?=
define DOCKER
docker run -it --rm \
--workdir '/srv/kernel_gateway' \
-e PYTHONPATH='/srv/kernel_gateway' \
-v `pwd`:/srv/kernel_gateway
-v `pwd`:/srv/kernel_gateway $(DOCKER_ARGS)
endef

help:
Expand Down

0 comments on commit f7aed1c

Please sign in to comment.