Skip to content

Commit 6da5580

Browse files
committed
Versioning
1 parent 6b787c9 commit 6da5580

2 files changed

Lines changed: 13 additions & 9 deletions

File tree

.travis.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
language: python
2+
23
python:
34
- 2.7
45
- 3.5
56
- 3.6
67
- 3.7
8+
79
dist: xenial
10+
811
before_install:
912
- echo -e "machine github.com\n login $GITHUB_TOKEN" > ~/.netrc
1013
- git lfs pull
14+
1115
install:
1216
- pip install -r requirements.txt
1317
- pip install codecov
1418
- pip install .
1519
- python setup.py install
20+
1621
script:
17-
- cd tests/
18-
- coverage run fetch_test.py
19-
- coverage run format_test.py
20-
- coverage run normalize_test.py
21-
- coverage run analyze_test.py
22-
- coverage run utils_test.py
23-
- bash <(curl -s https://codecov.io/bash) -cF python
24-
- cd ../
22+
- coverage run tests/fetch_test.py
23+
- coverage run tests/format_test.py
24+
- coverage run tests/normalize_test.py
25+
- coverage run tests/analyze_test.py
26+
- coverage run tests/utils_test.py
27+
2528
after_success:
2629
- codecov
30+
2731
deploy:
2832
provider: pypi
2933
user: j-berg

xpresstools/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def catenate_files(
273273

274274
return data
275275

276-
"""Collate HTseq counts files"""
276+
"""Collate counts files"""
277277
def count_table(
278278
file_list,
279279
gene_column=0, sample_column=1,

0 commit comments

Comments
 (0)