Skip to content

Commit

Permalink
Revert reorganization
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Sep 11, 2024
1 parent 3643694 commit 5f0ebc0
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
uses: nyurik/action-setup-postgis@v2

- name: Run pre-commit
working-directory: ./space2stats_api/
working-directory: ./space2stats_api/src
run: |
poetry run pre-commit run --all-files
- name: Run tests
working-directory: ./space2stats_api/
working-directory: ./space2stats_api/src
run: |
poetry run python -m pytest src/tests
poetry run python -m pytest tests
env:
PGHOST: localhost
PGPORT: 5432
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aws-cdk-lib==2.155.0
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions space2stats_api/src/tests/test_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from fastapi.testclient import TestClient
from psycopg.errors import OperationalError

from src.space2stats.app import app
from src.space2stats.errors import (
from space2stats.app import app
from space2stats.errors import (
database_exception_handler,
http_exception_handler,
validation_exception_handler,
Expand Down

0 comments on commit 5f0ebc0

Please sign in to comment.