-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
95 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ aiocron | |
marisa-trie | ||
oauth2client | ||
git+https://github.com/FAForever/faftools.git@develop#egg=faftools | ||
pyopenssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
py.test --cov-report term-missing --cov=server | ||
coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,8 @@ | |
from .ladder_service import LadderService | ||
from .control import init as run_control_server | ||
|
||
__version__ = '0.1' | ||
__author__ = 'Chris Kitching, Dragonfire, Gael Honorez, Jeroen De Dauw, Crotalus, Michael Søndergaard' | ||
__version__ = '0.2' | ||
__author__ = 'Chris Kitching, Dragonfire, Gael Honorez, Jeroen De Dauw, Crotalus, Michael Søndergaard, Michel Jung' | ||
__contact__ = '[email protected]' | ||
__license__ = 'GPLv3' | ||
__copyright__ = 'Copyright (c) 2011-2015 ' + __author__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ use faf_test; | |
|
||
-- Login table | ||
delete from login; | ||
insert into login (id, login, email, password) values (1, 'test', '[email protected]', 'test_password'); | ||
insert into login (id, login, email, password) values (2, 'Dostya', '[email protected]', 'vodka'); | ||
insert into login (id, login, email, password) values (3, 'Rhiza', '[email protected]', 'puff_the_magic_dragon'); | ||
insert into login (id, login, email, password) values (1, 'test', '[email protected]', SHA2('test_password', 256)); | ||
insert into login (id, login, email, password) values (2, 'Dostya', '[email protected]', SHA2('vodka', 256)); | ||
insert into login (id, login, email, password) values (3, 'Rhiza', '[email protected]', SHA2('puff_the_magic_dragon', 256)); | ||
|
||
-- global rating | ||
delete from global_rating; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters