Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
e6761e57
Unverified
Commit
e6761e57
authored
Jan 14, 2017
by
David Haynes
Browse files
2.7 and 3.6 testing
- backwards compat testing
parent
b4f68a1c
Pipeline
#757
failed with stages
in 1 minute and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
e6761e57
image
:
library/python:2.7
services
:
-
mysql:latest
types
:
-
test
-
test-2.7
-
test-3.6
variables
:
MYSQL_DATABASE
:
go
MYSQL_ROOT_PASSWORD
:
root
test_Go
:
type
:
test
Go-py2.7
:
image
:
library/python:2.7
type
:
test-2.7
before_script
:
-
python --version
-
apt-get update -qy
-
apt-get install -y libldap2-dev mysql-client libmysqlclient-dev python-mysqldb libjpeg-dev libsasl2-dev
-
pip install -r requirements.txt
-
cd go/
-
cp settings/settings.py.template settings/settings.py
-
cp settings/secret.py.template settings/secret.py
-
export SECRET_KEY=$(dd if=/dev/urandom count=100 | tr -dc "A-Za-z0-9" | fold -w 60 | head -n1 2>/dev/null)
-
export DJANGO_DEBUG="True"
-
sed -i settings/secret.py -e 's/DB_NAME.*/DB_NAME = \"go\"/'
-
sed -i settings/secret.py -e 's/DB_USER.*/DB_USER = \"root\"/'
-
sed -i settings/secret.py -e 's/DB_PASSWORD.*/DB_PASSWORD = \"root\"/'
-
sed -i settings/secret.py -e 's/DB_HOST.*/DB_HOST = \"mysql\"/'
-
sed -i settings/secret.py -e 's/SECRET_KEY.*/SECRET_KEY = \"${SECRET_KEY}\"/'
-
python manage.py makemigrations
-
python manage.py makemigrations go
-
python manage.py migrate
-
echo "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('root', 'root@srct.gmu.edu', 'root') " | python manage.py shell
script
:
-
pip install tblib
-
python manage.py test --parallel
Go-py3.6
:
image
:
library/python:3.6
type
:
test-3.6
before_script
:
-
python --version
-
apt-get update -qy
-
apt-get install -y libldap2-dev mysql-client libmysqlclient-dev python-mysqldb libjpeg-dev libsasl2-dev
-
pip install -r requirements.txt
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment