Skip to content
Snippets Groups Projects
Commit 3df546ba authored by Daniel Lyons's avatar Daniel Lyons
Browse files

Merge remote-tracking branch 'origin/master'

parents 3bb74aec a40ec248
No related branches found
No related tags found
No related merge requests found
""" Version information for this package, don't put anything else here. """
___version___ = '0.1.5'
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
from pathlib import Path from pathlib import Path
from setuptools import setup, find_packages from setuptools import setup, find_packages
VERSION = open('src/datafetcher/_version.py').readlines()[-1].split()[-1].strip("\"'") VERSION = open('_version.py').readlines()[-1].split()[-1].strip("\"'")
README = Path('README.md').read_text() README = Path('README.md').read_text()
setup( setup(
......
...@@ -16,9 +16,7 @@ from .utilities import get_arg_parser, get_capo_settings, FlexLogger ...@@ -16,9 +16,7 @@ from .utilities import get_arg_parser, get_capo_settings, FlexLogger
class DataFetcher: class DataFetcher:
''' '''
TO EXECUTE ALL DF TESTS: TO EXECUTE ALL DF TESTS: from datafetcher/, just run pytest
from data/:
python -m unittest discover -s apps/cli/executables/datafetcher -p '*_test.py'
example command line that should work with the correct local profile: example command line that should work with the correct local profile:
datafetcher --profile local --output-dir ~/Downloads/ datafetcher --profile local --output-dir ~/Downloads/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment