-
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.
- Loading branch information
1 parent
e03acd1
commit da1131f
Showing
15 changed files
with
381 additions
and
291 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,9 @@ | ||
workflow "Run python formatter" { | ||
on = "pull_request" | ||
resolves = ["Run wool"] | ||
} | ||
|
||
action "Run wool" { | ||
uses = "uc-cdis/wool@master" | ||
secrets = ["GITHUB_TOKEN"] | ||
} |
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,27 +1,18 @@ | ||
--- | ||
language: python | ||
|
||
python: | ||
- "2.7" | ||
- "3.6" | ||
|
||
- '2.7' | ||
- '3.6' | ||
matrix: | ||
allow_failures: | ||
- python: "3.6" | ||
|
||
- python: '2.7' | ||
sudo: false | ||
|
||
cache: pip | ||
|
||
install: | ||
- pip install --upgrade setuptools | ||
- pip install -r requirements.txt | ||
- python setup.py install | ||
- pip install -r dev-requirements.txt | ||
|
||
- pip install --upgrade setuptools | ||
- pip install -r requirements.txt | ||
- python setup.py install | ||
- pip install -r dev-requirements.txt | ||
before_script: | ||
- sudo rm -f /etc/boto.cfg | ||
|
||
- sudo rm -f /etc/boto.cfg | ||
script: | ||
- nosetests -v test/test_cleversafe_api_client.py | ||
- pytest test/test_google_api_client.py -vv | ||
- pytest -vv 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 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,21 @@ | ||
Description about what this pull request does. | ||
|
||
Please make sure to follow the [DEV guidelines](https://gen3.org/resources/developer/dev-introduction/) before asking for review. | ||
|
||
### New Features | ||
- Implemented XXX | ||
|
||
### Breaking Changes | ||
|
||
|
||
### Bug Fixes | ||
|
||
|
||
### Improvements | ||
|
||
|
||
### Dependency updates | ||
|
||
|
||
### Deployment changes | ||
|
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 @@ | ||
gen3cirrus==0.3.0 | ||
-e git+https://github.com/uc-cdis/cdislogging.git@master#egg=cdislogging | ||
cdislogging==1.0.0 | ||
gen3cirrus==1.0.0 |
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
Oops, something went wrong.