2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +00:00

Mysql fixes

This commit is contained in:
Oliver Walters
2021-03-31 17:34:12 +11:00
parent d09483f30c
commit 9e4218d02f
2 changed files with 5 additions and 5 deletions

View File

@ -14,6 +14,9 @@ jobs:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: inventree_test_db
MYSQL_USER: inventree
MYSQL_PASSWORD: password
ports:
- 3306
@ -30,9 +33,6 @@ jobs:
pip3 install invoke
pip3 install mysqlclient
invoke install
- name: Create Database
run: |
mysql -e 'CREATE DATABASE inventree_test_db;'
- name: Run Tests
run: |
cd InvenTree