ci: fix dependencies

This commit is contained in:
Jens Langhammer 2018-12-09 21:11:43 +01:00
parent 0754b07765
commit bc691f4f4c
No known key found for this signature in database
GPG Key ID: BEBC05297D92821B
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ before_script:
- "python3 -m pip install -U virtualenv"
- "virtualenv env"
- "source env/bin/activate"
- "pip3 install -U -r requirements.txt -r requirements-dev.txt"
- "pip3 install -U -r requirements-dev.txt"
stages:
- test
- build

View File

@ -9,3 +9,4 @@ colorlog
celery
redis<3.0
pymysql
idna<2.8,>=2.5

View File

@ -146,7 +146,6 @@ class OAuthCallback(OAuthClientMixin, View):
"Return url to redirect authenticated users."
return 'overview'
# pylint: disable=unused-argument
def get_or_create_user(self, source, access, info):
"Create a shell auth.User."
raise NotImplementedError()