-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
83 additions
and
119 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 |
---|---|---|
@@ -1,19 +1,21 @@ | ||
sudo: false | ||
language: python | ||
python: | ||
- "2.7" | ||
- "pypy" | ||
|
||
# command to install dependencies | ||
- '2.7' | ||
- pypy | ||
before_install: | ||
- ./setup.sh | ||
- source .dev_env/bin/activate | ||
install: | ||
- pip install . | ||
- pip install -r requirements.txt | ||
|
||
# environment dependencies | ||
before_script: | ||
- curl -O https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.27.zip | ||
- unzip -q google_appengine_1.9.27.zip | ||
- ln -s google_appengine/google google | ||
|
||
# command to run tests | ||
- pip install --upgrade setuptools | ||
- pip install . | ||
- pip install -r requirements.txt | ||
script: | ||
- python setup.py test | ||
- python setup.py test | ||
deploy: | ||
provider: pypi | ||
user: erichiggins | ||
on: | ||
tags: true | ||
password: | ||
secure: Ilet7Gy13l3rHmYDe35uxtGdhj1L3Q9p4KTTe/Q4Oo6CobvvsYgctfDGOFgwrNzy+vYDm9P4usUxu3Em//X46CQ5510YZXkYYQV57CPEbgWRx0Bz1ki221PMtuZkA38PEj5SWBQtQxvseDY7bKbP48XBvrI2GRzcJ8MXBKaPPBI= |
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.2.1 | ||
0.2.2 |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = 'Eric Higgins' | ||
__email__ = 'erichiggins@gmail.com' | ||
__version__ = '0.2.1' | ||
__version__ = '0.2.2' |
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,2 +1,2 @@ | ||
python-dateutil>=2.4.2 | ||
PyYAML==3.10 | ||
PyYAML~=3.10 |
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 @@ | ||
nose~=1.3.7 |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
GAE_SDK_SHA1='abe54d95c4ce6ffc35452e027ca701f5d21dd56a' | ||
GAE_SDK_FILE='google_appengine_1.9.35.zip' | ||
|
||
# Create virtual environment. | ||
echo 'Creating virtual environment...' | ||
virtualenv .dev_env | ||
source .dev_env/bin/activate | ||
pip install --upgrade ndg-httpsclient | ||
pip install --upgrade pip | ||
|
||
# Download the App Engine SDK. | ||
echo "Downloading $GAE_SDK_FILE..." | ||
curl -O https://storage.googleapis.com/appengine-sdks/featured/$GAE_SDK_FILE | ||
|
||
echo "Verifying $GAE_SDK_FILE..." | ||
shasum $GAE_SDK_FILE | ||
|
||
echo "Unzipping $GAE_SDK_FILE..." | ||
unzip -q $GAE_SDK_FILE -d .dev_env/ | ||
rm $GAE_SDK_FILE | ||
cd .dev_env/lib/python2.7/site-packages/ | ||
ln -s ../../../google_appengine/google google | ||
cd ../../../../ |