summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 317a7c76..1b117885 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: docs
+.PHONY: docs ci-dev
init:
pip install pipenv --upgrade
pipenv install --dev --skip-lock
@@ -8,6 +8,10 @@ test:
ci:
pipenv run py.test -n 8 --boxed --junitxml=report.xml
+ci-dev:
+ pip install git+https://github.com/urllib3/urllib3.git
+ $(MAKE) ci
+
test-readme:
@pipenv run python setup.py check --restructuredtext --strict && ([ $$? -eq 0 ] && echo "README.rst and HISTORY.rst ok") || echo "Invalid markup in README.rst or HISTORY.rst!"
@@ -25,4 +29,4 @@ publish:
docs:
cd docs && make html
- @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m" \ No newline at end of file
+ @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m"