diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 812018a..ef90783 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -50,6 +50,10 @@ jobs: run: | python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Run sqlite + env: + DATABASE_URL: "sqlite:///testsuite" + run: bash scripts/test.sh - name: Run mysql env: DATABASE_URL: "mysql://username:password@localhost:3306/testsuite" @@ -58,10 +62,6 @@ jobs: env: DATABASE_URL: "postgresql://username:password@localhost:5432/testsuite" run: bash scripts/test.sh - - name: Run sqlite - env: - DATABASE_URL: "sqlite:///testsuite" - run: bash scripts/test.sh - run: mypy --config-file mypy.ini ormar tests - name: Upload coverage uses: codecov/codecov-action@v1