aboutsummaryrefslogtreecommitdiffstats
path: root/python-tornado/Makefile
diff options
context:
space:
mode:
authorDevendra2013-09-25 13:51:19 +0530
committerDevendra2013-09-25 13:51:19 +0530
commit09d6ea1fa20f87dc648740ffb2a70f67e7e4efa9 (patch)
treeb1121f01efe49709a85a33f956f1ea572fda4eea /python-tornado/Makefile
parent2c77bdb1d0725d7203ce7ce94ec675de750974b0 (diff)
downloadpubnub-python-09d6ea1fa20f87dc648740ffb2a70f67e7e4efa9.tar.bz2
combining into Pubnub.py, added common async unit test methodCL-9603
Diffstat (limited to 'python-tornado/Makefile')
-rw-r--r--python-tornado/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/python-tornado/Makefile b/python-tornado/Makefile
index 13a5e5a..bf23137 100644
--- a/python-tornado/Makefile
+++ b/python-tornado/Makefile
@@ -6,13 +6,23 @@ all: build
.PHONY: build
build:
+ cat ../common/LICENSE_HEADER > ./Pubnub.py
+ echo "\n" >> ./Pubnub.py
+ cat ../common/PubnubCrypto.py >> ./Pubnub.py
+ echo "\n" >> ./Pubnub.py
+ cat ../common/PubnubBase.py >> ./Pubnub.py
+ echo "\n" >> ./Pubnub.py
+ cat ../common/PubnubCoreAsync.py >> ./Pubnub.py
+ echo "\n" >> ./Pubnub.py
+ cat ./unassembled/Platform.py >> ./Pubnub.py
find -name "Pubnub*py" | xargs sed -i "s/PubNub\ [0-9]\.[0-9]\.[0-9]/PubNub\ $(VERSION)/g"
.PHONY: clean
clean:
+ rm -f Pubnub.py*
.PHONY: test
test:
- python ../common/unit-test-async.py
+ python tests/unit-tests.py