File tree Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 8
8
script :
9
9
- python -m pylint ./pusher_push_notifications/*.py
10
10
- python -m nose -s
11
+ - python setup.py checkdocs
Original file line number Diff line number Diff line change 1
1
# Makefile for pusher_push_notifications
2
2
all : run
3
3
4
- rebuild_venv :
5
- rm -rf venv
6
- make venv
7
-
8
4
venv :
9
- test -d venv || python3 -m virtualenv venv
5
+ rm -rf venv
6
+ python3 -m virtualenv venv
10
7
venv/bin/pip3 install -Ur requirements.txt
11
8
venv/bin/pip3 install -Ur dev_requirements.txt
12
9
13
- run : venv
14
- @echo " Running pusher_push_notifications..."
10
+ venv_2 :
11
+ rm -rf venv
12
+ python2.7 -m virtualenv venv
13
+ venv/bin/pip install -Ur requirements.txt
14
+ venv/bin/pip install -Ur dev_requirements.txt
15
15
16
16
check : test
17
17
18
18
test : venv
19
- @venv/bin/python3 -m nose -s
20
-
21
- test_python2 : venv
22
- @rm -rf venv
23
- @python2.7 -m virtualenv venv
24
- @venv/bin/pip install -Ur requirements.txt
25
- @venv/bin/pip install -Ur dev_requirements.txt
26
- @venv/bin/python2.7 -m nose -s
19
+ @venv/bin/python -m nose -s
27
20
28
21
lint : venv
29
- @venv/bin/python3 -m pylint ./pusher_push_notifications/* .py
22
+ @venv/bin/python -m pylint ./pusher_push_notifications/* .py
23
+ @venv/bin/python setup.py checkdocs
Original file line number Diff line number Diff line change
1
+ .. image :: https://travis-ci.org/pusher/push-notifications-python.svg?branch=master
2
+ :target: https://travis-ci.org/pusher/push-notifications-python
3
+
1
4
Pusher Push Notifications Python server SDK
2
5
===========================================
3
6
Full documentation for this SDK can be found `here <https://docs.pusher.com/push-notifications/reference/server-sdk-python >`__
You can’t perform that action at this time.
0 commit comments