Skip to content

Commit

Permalink
Merge pull request #73 from ahopkins/dev
Browse files Browse the repository at this point in the history
Version 1.0.0
  • Loading branch information
ahopkins committed Feb 25, 2018
2 parents c8040bf + a19764a commit 74141ff
Show file tree
Hide file tree
Showing 41 changed files with 1,928 additions and 1,045 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ install:
script:
- python setup.py test

after_success:
- coverage xml
- python-codacy-coverage -r coverage.xml

env:
- DEVELOPMENT=false
21 changes: 12 additions & 9 deletions docs/Makefile → Makefile
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXPROJ = sanic-jwt
SOURCEDIR = source
BUILDDIR = build
SOURCEDIR = docs/source
BUILDDIR = docs/build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@echo "test - run tests with coverage"
@echo "release - package and upload a release"

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

test:
python setup.py test

release: clean
python setup.py sdist upload
python setup.py bdist_wheel upload
14 changes: 10 additions & 4 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
## Purpose
## Goal
_Describe the problem or feature in addition to a link to the issues._

## Approach
_How does this change address the problem?_
_How does this address the problem?_

#### Open Questions and Pre-Merge TODOs
- [ ] Use github checklists. When solved, check the box and explain the answer.
## New Features/Changes
_Make a list of all the things that have changed_

## Example
_Throw in a little snippet of code that showcases your work_

## Open Questions and TODOs
- [X] Use github checklists. _When solved, check the box and explain the answer._

0 comments on commit 74141ff

Please sign in to comment.