Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
28 lines (20 loc) · 741 Bytes

File metadata and controls

28 lines (20 loc) · 741 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.PHONY: venv install test-install test test-integ test-docker clean nopyc
venv: clean
@python --version || (echo "Python is not installed, please install Python 2 or Python 3"; exit 1);
virtualenv --python=python venv
install: venv
. venv/bin/activate; python setup.py install
. venv/bin/activate; pip install -r requirements.txt
test-install: install
. venv/bin/activate; pip install -r test/requirements.txt
test: test-install
test-integ: test
. venv/bin/activate; coverage run -m unittest discover
version ?= latest
test-docker:
curl -s https://raw.githubusercontent.com/sendgrid/sendgrid-oai/HEAD/prism/prism.sh -o prism.sh
version=$(version) bash ./prism.sh
clean: nopyc
rm -rf venv
nopyc:
find . -name \*.pyc -delete
Morty Proxy This is a proxified and sanitized view of the page, visit original site.