Skip to content

Commit

Permalink
ci config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ferencberes committed Jul 4, 2021
1 parent 7c9527b commit 9062851
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- run: which python
- name: Run installation.
run: |
pip install codecov
pip install .[test]
#pip install codecov
#pip install .[test]
python setup.py install
bash ./scripts/download_data.sh
#- name: Test coverage.
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"tqdm",
]

setup_requires = ['pytest-runner']
#setup_requires = ['pytest-runner']

tests_require = [
'pytest',
'pytest-cov',
'codecov'
]
#tests_require = [
# 'pytest',
# 'pytest-cov',
# 'codecov'
#]

keywords = [
"bitcoin",
Expand All @@ -40,8 +40,8 @@
author_email='fberes@info.ilab.sztaki.hu',
packages = find_packages(),
install_requires=install_requires,
setup_requires = setup_requires,
tests_require = tests_require,
#setup_requires = setup_requires,
#tests_require = tests_require,
keywords = keywords,
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 9062851

Please sign in to comment.