Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
tnajdek committed Jul 19, 2015
1 parent 640578b commit aad09a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
nosetests --with-coverage --cover-package=message test/*.py
nosetests --with-coverage --cover-package=schemamessages

0 comments on commit aad09a4

Please sign in to comment.