Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ccarterlandis committed Jun 18, 2018
1 parent 1cb1f23 commit 4766bff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CONDAUPDATE=if ! source activate augur; then conda env create -n=augur -f=enviro
CONDAACTIVATE=source activate augur;
OLDVERSION="null"
EDITOR?="vi"
SOURCE=*

default:
@ echo "Installation Commands:"
Expand All @@ -24,6 +25,7 @@ default:
@ echo " dev-stop Stops the backgrounded commands"
@ echo " dev-restart Runs dev-stop then dev-restart"
@ echo " test Run pytest unit tests"
@ echo " test-source SOURCE={source} Run pytest unit tests for the specified data source (name only, no extension)"
@ echo " build Builds documentation and frontend - use before pushing"
@ echo " frontend Builds frontend with Brunch"
@ echo " update-deps Generates updated requirements.txt and environment.yml"
Expand Down Expand Up @@ -127,6 +129,9 @@ build: frontend docs
test:
bash -c '$(CONDAACTIVATE) python -m pytest ./test'

test-source:
bash -c '$(CONDAACTIVATE) python -m pytest test/test_${SOURCE}.py'

.PHONY: unlock
unlock:
find . -type f -name "*.lock" -delete
Expand Down
2 changes: 1 addition & 1 deletion augur/metadata.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.0'
__version__ = '0.6.1'
4 changes: 2 additions & 2 deletions test/test_ghtorrentplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def ghtorrentplus():
# *** DIVERSITY AND INCLUSION *** #

# *** GROWTH, MATURITY, AND DECLINE *** #
# def test_closed_issue_resolution_duration(ghtorrentplus):
# assert ghtorrentplus.closed_issue_resolution_duration('mopidy', 'mopidy').isin(["2012-11-10T09:51:19.000Z"]).any
def test_closed_issue_resolution_duration(ghtorrentplus):
assert ghtorrentplus.closed_issue_resolution_duration('mopidy', 'mopidy').isin(["2012-11-10T09:51:19.000Z"]).any

# *** RISK *** #

Expand Down
4 changes: 2 additions & 2 deletions test/test_publicwww.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ def publicwww():
# *** ACTIVITY *** #

# *** EXPERIMENTAL *** #
# def test_linking_websites(publicwww):
# assert publicwww.linking_websites(owner='yihui', repo='knitr').isin(["sohu.com"]).any
def test_linking_websites(publicwww):
assert publicwww.linking_websites(owner='yihui', repo='knitr').isin(["sohu.com"]).any

0 comments on commit 4766bff

Please sign in to comment.