From aad09a4ca05a5b55c9958cfb538319b5990c9b13 Mon Sep 17 00:00:00 2001 From: Tom Najdek Date: Sun, 19 Jul 2015 13:37:09 +0100 Subject: [PATCH] Clean up --- .travis.yml | 2 +- README.md | 2 +- test.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8e6a567..6001c91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,6 @@ install: - pip install -r requirements-dev.txt - pip install coveralls # command to run tests -script: nosetests --with-coverage --cover-package=schemamessages --logging-level=INFO +script: nosetests --with-coverage --cover-package=schemamessages after_success: coveralls \ No newline at end of file diff --git a/README.md b/README.md index 890e262..7b8db35 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/tnajdek/schema-messages-python.svg?branch=master)](https://travis-ci.org/tnajdek/schema-messages-python) [![Coverage Status](https://coveralls.io/repos/tnajdek/schema-messages-python/badge.svg?branch=master&service=github)](https://coveralls.io/github/tnajdek/schema-messages-python?branch=master) -Schema Messages creates binary representation of structured data that can be efficiently transmitted over network. Anticipated for use in applications where identical structure messages are transmitted repeatively, e.g. in games. For example sending the following message: +Schema Messages creates binary representation of structured data that can be efficiently transmitted over network. Anticipated for use in applications where identical structure messages are transmitted repeatively, e.g. in multiplayer/online games. For example sending the following message: { 'player_id': 42, diff --git a/test.sh b/test.sh index 05b473c..3e1a202 100755 --- a/test.sh +++ b/test.sh @@ -1,2 +1,2 @@ #!/usr/bin/env bash -nosetests --with-coverage --cover-package=message test/*.py \ No newline at end of file +nosetests --with-coverage --cover-package=schemamessages \ No newline at end of file