Skip to content

Commit

Permalink
Fixed travis conf and added integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Jul 9, 2016
1 parent c834a76 commit cd81c66
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,4 @@ install:
- "./install.sh --noroot"

script:
- "python3 -c 'import aw.core'"
- "python3 -c 'import aw.client'"
- "python3 -c 'import aw.server'"
- "./integration_tests.sh"
11 changes: 11 additions & 0 deletions integration_tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

aw-server --testing &
serverpid=$!

sleep 2

nosetests aw-server

kill $serverpid

0 comments on commit cd81c66

Please sign in to comment.