mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Typo fix
This commit is contained in:
parent
631e41e22a
commit
af52f0eace
2
.github/workflows/mysql.yaml
vendored
2
.github/workflows/mysql.yaml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
MYSQL_PASSWORD: password
|
MYSQL_PASSWORD: password
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
|
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
|
||||||
ports:
|
ports:
|
||||||
- 3306
|
- 3306:3306
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
|
9
.github/workflows/postgresql.yaml
vendored
9
.github/workflows/postgresql.yaml
vendored
@ -13,9 +13,11 @@ jobs:
|
|||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
env:
|
env:
|
||||||
|
POSTGRES_USER: inventree
|
||||||
POSTGRES_PASSWORD: password
|
POSTGRES_PASSWORD: password
|
||||||
|
POSTGRES_DB: inventree_test_db
|
||||||
ports:
|
ports:
|
||||||
- 5432
|
- 5432:5432
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
@ -28,11 +30,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
sudo apt-get install libpq-dev
|
sudo apt-get install libpq-dev
|
||||||
pip3 install invoke
|
pip3 install invoke
|
||||||
pip3 install pyscopg2
|
pip3 install psycopg2
|
||||||
invoke install
|
invoke install
|
||||||
- name: Create Database
|
|
||||||
run: |
|
|
||||||
psql -c 'create database inventree_test_db;' -U postgres
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
cd InvenTree
|
cd InvenTree
|
||||||
|
Loading…
Reference in New Issue
Block a user