Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dvolgyes committed Jun 4, 2018
1 parent d08b1d4 commit feb0567
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
13 changes: 0 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,6 @@ matrix:
python: 2.7
env: PYVERSION="2"


- os: linux
dist: trusty
sudo: required
python: "pypy2.7"
env: PYVERSION="2"

- os: linux
dist: trusty
sudo: required
python: "pypy3.5"
env: PYVERSION="2"

install:
- pip${PYVERSION} install --upgrade pip setuptools wheel
- pip${PYVERSION} install coveralls codecov pyflakes
Expand Down
6 changes: 5 additions & 1 deletion tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
set -e
DIR=$(dirname "$0")

PYTHON="python3 -m coverage run -a --source $DIR/../src/"
if [ -z "${PYVERSION+xxx}" ]; then
PYVERSION=3
fi

PYTHON="python$PYVERSION -m coverage run -a --source $DIR/../src/"
$PYTHON $DIR/../src/zenodo_get.py
$PYTHON $DIR/../src/zenodo_get.py -h

Expand Down

0 comments on commit feb0567

Please sign in to comment.