forked from codalab/codalab-competitions
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Christophe Poulain
committed
Jan 25, 2014
1 parent
ea8dff4
commit 6dbfeba
Showing
38 changed files
with
657 additions
and
543 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
exclude: venv,scripts | ||
ignore: E501,F403 |
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,12 +1,16 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
branches: | ||
only: | ||
- master | ||
install: | ||
- pip install -r codalab/requirements/dev_azure_nix.txt --use-mirrors | ||
script: | ||
- cd codalab | ||
- python manage.py test | ||
|
||
language: python | ||
python: | ||
- "2.7" | ||
branches: | ||
only: | ||
- master | ||
install: | ||
- "pip install -r codalab/requirements/dev_azure_nix.txt --use-mirrors" | ||
# - "pip install -q flake8 pylint django-nose --use-mirrors" | ||
before_script: | ||
# - "flake8 --config=.flake8 ." | ||
# - "pylint --rcfile=pylint.rc tests" | ||
# - "pylint --rcfile=pylint.rc setup.py" | ||
script: | ||
- "cd codalab" | ||
- "python manage.py test" |
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 @@ | ||
from django.db import models | ||
|
||
# Create your models here. |
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 |
---|---|---|
@@ -1,11 +1,6 @@ | ||
import re | ||
|
||
from django.core import validators | ||
from django.core.mail import send_mail | ||
from django.db import models | ||
from django.contrib.auth import models as auth_models | ||
from django.utils import timezone | ||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
|
||
class ClUser(auth_models.AbstractUser): | ||
pass |
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
Oops, something went wrong.