-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #286 from alphagov/pc-make-markdown-missing
Remove markdown filter from utils
- Loading branch information
Showing
7 changed files
with
53 additions
and
41 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
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,22 @@ | ||
SHELL := /bin/bash | ||
VIRTUALENV_ROOT := $(shell [ -z $$VIRTUAL_ENV ] && echo $$(pwd)/venv || echo $$VIRTUAL_ENV) | ||
|
||
virtualenv: | ||
[ -z $$VIRTUAL_ENV ] && [ ! -d venv ] && virtualenv venv || true | ||
|
||
requirements_for_test: virtualenv requirements_for_test.txt | ||
${VIRTUALENV_ROOT}/bin/pip install -r requirements_for_test.txt | ||
|
||
test: show_environment test_pep8 test_python | ||
|
||
test_pep8: virtualenv | ||
${VIRTUALENV_ROOT}/bin/pep8 . | ||
|
||
test_python: virtualenv | ||
${VIRTUALENV_ROOT}/bin/py.test ${PYTEST_ARGS} | ||
|
||
show_environment: | ||
@echo "Environment variables in use:" | ||
@env | grep DM_ || true | ||
|
||
.PHONY: virtualenv requirements_for_test test_pep8 test_python show_environment |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
|
||
import flask_featureflags | ||
|
||
__version__ = '21.11.0' | ||
__version__ = '22.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
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