Skip to content

Commit

Permalink
adding skeleton structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Hall committed Oct 2, 2013
1 parent 8559c4d commit 93ddc9d
Show file tree
Hide file tree
Showing 21 changed files with 34 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: python
python:
- "3.2"
- "3.3"
# command to install dependencies
install:
- pip install -r pylint
# command to run tests
script:
- nosetests
- pylint --rcfile=pylint.conf fitg
Empty file added fitg/__init__.py
Empty file.
Binary file added fitg/__init__.pyc
Binary file not shown.
Empty file added fitg/ai/__init__.py
Empty file.
Binary file added fitg/ai/__init__.pyc
Binary file not shown.
Empty file added fitg/backend/__init__.py
Empty file.
Binary file added fitg/backend/__init__.pyc
Binary file not shown.
Empty file added fitg/client/__init__.py
Empty file.
Binary file added fitg/client/__init__.pyc
Binary file not shown.
Empty file added fitg/tests/__init__.py
Empty file.
Binary file added fitg/tests/__init__.pyc
Binary file not shown.
Empty file added fitg/tests/ai/__init__.py
Empty file.
Binary file added fitg/tests/ai/__init__.pyc
Binary file not shown.
Empty file added fitg/tests/backend/__init__.py
Empty file.
Binary file added fitg/tests/backend/__init__.pyc
Binary file not shown.
Empty file added fitg/tests/client/__init__.py
Empty file.
Binary file added fitg/tests/client/__init__.pyc
Binary file not shown.
5 changes: 5 additions & 0 deletions fitg/tests/fitg_tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import sys

def test_version():
if not sys.version_info['major'] == (3):
assert False
Binary file added fitg/tests/fitg_tests.pyc
Binary file not shown.
18 changes: 18 additions & 0 deletions pylint.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[MESSAGES CONTROL]
# C0111 Missing docstring
# I0011 Warning locally suppressed using disable-msg
# I0012 Warning locally suppressed using disable-msg
# W0704 Except doesn't do anything Used when an except clause does nothing but "pass" and there is no "else" clause
# W0142 Used * or * magic* Used when a function or method is called using *args or **kwargs to dispatch arguments.
# W0212 Access to a protected member %s of a client class
# W0232 Class has no __init__ method Used when a class has no __init__ method, neither its parent classes.
# W0613 Unused argument %r Used when a function or method argument is not used.
# W0702 No exception's type specified Used when an except clause doesn't specify exceptions type to catch.
# R0201 Method could be a function
# W0614 Unused import XYZ from wildcard import
# R0914 Too many local variables
# R0912 Too many branches
# R0915 Too many statements
# R0913 Too many arguments
# R0904 Too many public methods
disable=C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,W0614,R0914,R0912,R0915,R0913,R0904,R0801
Empty file added setup.py
Empty file.

0 comments on commit 93ddc9d

Please sign in to comment.