-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from paulhtremblay/development
fixing bug; updating docs
- Loading branch information
Showing
6 changed files
with
74 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
set -e | ||
#rmvirtualenv temp | ||
#mkvirtualenv temp | ||
bash create_dist.sh | ||
pip install . | ||
cd ~/Downloads | ||
rm -Rf py_mock_data_test_dist | ||
mkdir py_mock_data_test_dist | ||
cd py_mock_data_test_dist | ||
cp ~/projects/py-data-mock/requirements_test_dist.txt . | ||
pip install -r requirements_test_dist.txt | ||
cp -R $PROJECTS_DIR/py-data-mock/unittests . | ||
bash unittests/test_all.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = "0.0.2" | ||
__version__ = "0.0.3" | ||
__author__ = 'Henry Tremblay' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
|
||
setup( | ||
name='py-data-mock', | ||
version='0.0.2', | ||
version='0.0.3', | ||
scripts=['data_mock/scripts/mkmock.py'], | ||
description='Mock Data', | ||
url='https://github.com/paulhtremblay/py-data-mock', | ||
author='Henry Tremblay', | ||
author_email='[email protected]', | ||
license='GNU GENERAL PUBLIC LICENSE', | ||
packages=['data_mock/google/cloud/bigquery/job', 'data_mock/google/cloud/bigquery', | ||
'data_mock/google/cloud/storage','data_mock/mock_helpers', | ||
'data_mock/google/cloud/storage','data_mock/mock_helpers', 'data_mock', | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters