Skip to content

Commit 28f68e1

Browse files
authored
Merge pull request #35 from Bobfrat/fix-setup
Add xml file to packaged data
2 parents 70724d9 + 00eda40 commit 28f68e1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ before_install:
1818
- source activate TEST
1919
- travis_retry conda install --yes pytest flake8
2020

21+
install:
22+
- pip install -r requirements.txt
23+
- pip install -r test_requirements.txt
24+
- pip install -e .
25+
2126
script:
22-
- python setup.py test -a "--verbose"
23-
- find . -type f -name "*.py" | xargs flake8 --max-line-length=100
27+
- py.test -s -rxs -v
28+
- flake8 --ignore=E501,E251,E221,E201,E202,E203 -qq --statistics . || true

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def readme():
1919
url = "https://github.com/ioos/cc-plugin-ncei/",
2020
packages = find_packages(),
2121
install_requires = reqs,
22-
package_data = {'cc_plugin_ncei': ['data/*.json', 'data/*.csv']},
22+
package_data = {'cc_plugin_ncei': ['data/*.json', 'data/*.xml']},
2323
classifiers = [
2424
'Development Status :: 5 - Production/Stable',
2525
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)