forked from singer-io/singer-python
-
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.
Motivation ---------- This appears to have been deprecated for some time and is poorly behaved in the case of fractional seconds. `utils.strptime_to_utc` is preferred anyway. See singer-io#81 Implementation Notes -------------------- - Move to circle 2.0 - Add doctest to the nose runner - Add a docstring and warn call to utils.strptime
- Loading branch information
Tim Visher
committed
Oct 22, 2018
1 parent
3ddbcc6
commit 9ea5ac8
Showing
10 changed files
with
119 additions
and
86 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,26 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: ubuntu:16.04 | ||
steps: | ||
- checkout | ||
- run: | ||
name: 'Install python 3.5.2' | ||
command: | | ||
apt update | ||
apt install --yes python3 python3-pip python3-venv | ||
- run: | ||
name: 'Setup virtualenv' | ||
command: | | ||
mkdir -p ~/.virtualenvs | ||
python3 -m venv ~/.virtualenvs/singer-python | ||
source ~/.virtualenvs/singer-python/bin/activate | ||
pip install -U pip setuptools | ||
make install | ||
- run: | ||
name: 'Run tests' | ||
command: | | ||
# Need to re-activate the virtualenv | ||
source ~/.virtualenvs/singer-python/bin/activate | ||
make test |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -19,6 +19,8 @@ | |
extras_require={ | ||
'dev': [ | ||
'pylint', | ||
'ipython', | ||
'ipdb', | ||
'nose', | ||
'singer-tools' | ||
] | ||
|
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
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