Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit 4aef3fb

Browse files
committed
Revert "refactor yaml"
This reverts commit 77a8cf5.
1 parent 9a01c08 commit 4aef3fb

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

.github/workflows/ci.yml

+18-9
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
mysql:
1919
image: mysql:5.7
2020
env:
21-
MYSQL_ALLOW_EMPTY_PASSWORD: true
22-
MYSQL_ROOT_PASSWORD: root
23-
MYSQL_DATABASE: python_blogs
21+
DB_DATABASE: python_blogs
22+
DB_USER: root
23+
DB_PASSWORD:
2424
ports: ['3306:3306']
2525

2626
steps:
@@ -32,17 +32,14 @@ jobs:
3232
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
3333
restore-keys: |
3434
${{ runner.os }}-pip-
35-
3635
- name: Set up Python ${{ matrix.python-version }}
3736
uses: actions/setup-python@v3
3837
with:
3938
python-version: ${{ matrix.python-version }}
40-
4139
- name: Install Dependencies
4240
run: |
4341
python -m pip install --upgrade pip
4442
pip install -r requirements.txt
45-
4643
- name: Copy settings
4744
run: |
4845
cp settings_local.py.template settings_local.py
@@ -51,12 +48,24 @@ jobs:
5148
run: |
5249
sudo service mysql start
5350
sudo mysql -uroot -proot -e 'CREATE DATABASE python_blogs;'
54-
5551
- name: Run Migrations
5652
run: |
5753
python manage.py migrate
5854
python manage.py loaddata data.json
59-
55+
env:
56+
DBENGINE: django.db.backends.mysql
57+
DBNAME: python_blogs
58+
DBUSER: root
59+
DBPASSWORD:
60+
DBHOST: 127.0.0.1
61+
DBPORT: $
6062
- name: Run Tests
6163
run: |
62-
python manage.py test
64+
python manage.py test
65+
env:
66+
DBENGINE: django.db.backends.mysql
67+
DBNAME: python_blogs
68+
DBUSER: root
69+
DBPASSWORD:
70+
DBHOST: 127.0.0.1
71+
DBPORT: $

settings_local.py.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DATABASES = {
2020
"ENGINE": "django.db.backends.mysql", # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
2121
"HOST": "", # Set to empty string for localhost. Not used with sqlite3.
2222
"NAME": "python_blogs", # Or path to database file if using sqlite3.
23-
"PASSWORD": "", # Not used with sqlite3.
23+
"PASSWORD": "root", # Not used with sqlite3.
2424
"PORT": "", # Set to empty string for default. Not used with sqlite3.
2525
"USER": "root", # Not used with sqlite3.
2626
}

0 commit comments

Comments
 (0)