Skip to content

Commit 0d3ce0b

Browse files
committed
removed ellar-with-sqlalchemy
1 parent c839720 commit 0d3ce0b

File tree

8 files changed

+5
-5
lines changed

8 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
python-version: 3.8
1818
- name: Install Flit
19-
run: pip install flit ellar_jwt ellar_sql
19+
run: pip install flit ellar_jwt
2020
- name: Install Dependencies
2121
run: make install
2222
- name: Test

.github/workflows/test_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install Flit
22-
run: pip install flit ellar_jwt ellar_sql
22+
run: pip install flit ellar_jwt
2323
- name: Install Dependencies
2424
run: make install
2525
- name: Test

pytest.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
addopts = --strict-config --strict-markers
33
xfail_strict = true
44
junit_family = "xunit2"
5+
norecursedirs = samples/05-ellar-with-sqlalchemy/*
56

67
[pytest-watch]
78
runner= pytest --failed-first --maxfail=1 --no-success-flaky-report

samples/05-ellar-with-sqlalchemy/db_learning/tests/__init__.py renamed to samples/05-ellar-with-sqlalchemy/tests/__init__.py

File renamed without changes.

samples/05-ellar-with-sqlalchemy/db_learning/tests/common.py renamed to samples/05-ellar-with-sqlalchemy/tests/common.py

File renamed without changes.

samples/05-ellar-with-sqlalchemy/db_learning/tests/conftest.py renamed to samples/05-ellar-with-sqlalchemy/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
import pytest
44
import sqlalchemy as sa
5+
from db_learning.root_module import ApplicationModule
56
from ellar.common.constants import ELLAR_CONFIG_MODULE
67
from ellar.testing import Test
78
from ellar_sql import EllarSQLService
89

9-
from ..root_module import ApplicationModule
1010
from . import common
1111

1212
os.environ.setdefault(ELLAR_CONFIG_MODULE, "db_learning.config:TestConfig")

samples/05-ellar-with-sqlalchemy/db_learning/tests/factories.py renamed to samples/05-ellar-with-sqlalchemy/tests/factories.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import factory
2-
from ellar_sql.factory import SESSION_PERSISTENCE_FLUSH, EllarSQLFactory
3-
42
from db_learning.models import User
3+
from ellar_sql.factory import SESSION_PERSISTENCE_FLUSH, EllarSQLFactory
54

65
from . import common
76

samples/05-ellar-with-sqlalchemy/db_learning/tests/test_user_model.py renamed to samples/05-ellar-with-sqlalchemy/tests/test_user_model.py

File renamed without changes.

0 commit comments

Comments
 (0)