Commit 02d43e90 authored by Liubov Chuprikova's avatar Liubov Chuprikova
Browse files

New upstream version 2019.4.0

parent 4857d528
Loading
Loading
Loading
Loading

.coveragerc

0 → 100644
+14 −0
Original line number Diff line number Diff line
[run]
branch = True
omit =
    */tests*
    */__init__.py
    q2_types/_version.py
    versioneer.py

[report]
omit =
    */tests*
    */__init__.py
    q2_types/_version.py
    versioneer.py
+1 −1
Original line number Diff line number Diff line
q2cli/_version.py export-subst
q2_types/_version.py export-subst
+2 −0
Original line number Diff line number Diff line
@@ -63,3 +63,5 @@ target/

# vi
.*.swp

.DS_Store
+5 −5
Original line number Diff line number Diff line
@@ -14,12 +14,12 @@ install:
  - wget -q https://raw.githubusercontent.com/qiime2/environment-files/master/latest/staging/qiime2-latest-py36-linux-conda.yml
  - conda env create -q -n test-env --file qiime2-latest-py36-linux-conda.yml
  - source activate test-env
  - conda install -q nose
  - pip install -q flake8
  - conda install -q pytest-cov
  - pip install -q flake8 coveralls
  - pip install -q https://github.com/qiime2/q2lint/archive/master.zip
  - make install
script:
  - make lint
  - make test
  - QIIMETEST= source tab-qiime
  - QIIMETEST= qiime info
  - make test-cov
after_success:
  - coveralls
+1 −1
Original line number Diff line number Diff line
include versioneer.py
include q2cli/_version.py
include q2_types/_version.py
Loading