Skip to content

Commit

Permalink
chore: update ci,add changelog as pushed ,Publish to GitHub Releases …
Browse files Browse the repository at this point in the history
…as test passed and merged from PR
  • Loading branch information
AtticusZeller committed Jan 11, 2024
1 parent fa0b993 commit eeb3d37
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app/crud/crud_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class CRUDItem(CRUDBase[Item, ItemCreate, ItemUpdate]):
async def create(self, db: AsyncClient, *, obj_in: ItemCreate) -> Item:

return await super().create(db, obj_in=obj_in)

async def get(self, db: AsyncClient, *, id: str) -> Item:
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def client() -> Generator:
yield c



@pytest.fixture(scope="module")
async def db() -> AsyncGenerator[AsyncClient, None]:
url = os.environ.get("SUPABASE_TEST_URL")
Expand Down
1 change: 0 additions & 1 deletion tests/crud/test_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ async def test_create_item(db: AsyncClient) -> None:
assert item.test_data == test_data



#
# @pytest.mark.anyio
# async def test_get_item(db: AsyncClient) -> None:
Expand Down

0 comments on commit eeb3d37

Please sign in to comment.