Skip to content

Commit 422824d

Browse files
authored
Merge pull request #149 from deeptools/develop
3.2 release of pgt
2 parents 1352c2a + 910f52c commit 422824d

File tree

104 files changed

+4163
-1560
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+4163
-1560
lines changed

.travis.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ deploy:
1313
python:
1414
- 3.6
1515
- 3.7
16+
#- 3.8
1617
env:
1718
- TRAVIS_PYTHON_VERSION=3.6
1819
- TRAVIS_PYTHON_VERSION=3.7
20+
#- TRAVIS_PYTHON_VERSION=3.8
1921

2022
os:
2123
- linux
@@ -25,7 +27,6 @@ jobs:
2527
- stage: lint
2628
env:
2729
- LINT=1
28-
- TRAVIS_PYTHON_VERSION=3.6
2930
- TRAVIS_OS_NAME=linux
3031
before_install:
3132
- curl https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o
@@ -39,7 +40,7 @@ jobs:
3940
install:
4041
- conda install --yes python=$TRAVIS_PYTHON_VERSION flake8
4142
script:
42-
- if [[ "$LINT" == "1" ]]; then flake8 . --exclude=.venv,.build,build --ignore=E501,F403,E402,F999,F405,E712
43+
- if [[ "$LINT" == "1" ]]; then flake8 . --exclude=.venv,.build,build --ignore=E501,F403,E402,F999,F405,E712,W503
4344
; fi
4445
before_install:
4546
- export TEST_DATA_DIR="`pwd`/pygenometracks/test/test_data/"
@@ -59,6 +60,10 @@ before_install:
5960
- conda info -a
6061
install:
6162
- conda install --yes -c bioconda -c conda-forge python=$TRAVIS_PYTHON_VERSION --file requirements.txt
63+
- conda install --yes -c conda-forge -c bioconda pytest
64+
- conda install --yes -c conda-forge -c bioconda nose
65+
- conda install --yes -c conda-forge -c bioconda ghostscript
66+
- conda install --yes pathlib
6267
- python setup.py install
6368
script:
6469
- py.test pygenometracks --doctest-modules

0 commit comments

Comments
 (0)