Skip to content

Commit

Permalink
Merge pull request #8 from ReproNim/enhs
Browse files Browse the repository at this point in the history
Run pre-commit run -a on all files, fix up flake8 warnings
  • Loading branch information
yarikoptic authored Oct 18, 2023
2 parents 17a208f + 3d4c693 commit e04b0ac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
ls -l
pip install poetry
poetry config virtualenvs.create false
poetry config virtualenvs.in-project true
poetry config virtualenvs.in-project true
poetry env use `which python`
python --version
poetry --version
Expand Down
1 change: 0 additions & 1 deletion db/db_dev_v1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,3 @@ where
ml.study_id = 1
order by ml.created_on asc
;

2 changes: 1 addition & 1 deletion repromon_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#
#
9 changes: 5 additions & 4 deletions repromon_app/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
import os
import logging
import threading
import os
import tempfile

import pytest
from fastapi import FastAPI
from fastapi.testclient import TestClient
from httpx import BasicAuth

from repromon_app.config import app_config, app_config_init, app_settings
from repromon_app.db import db_init
from repromon_app.config import app_config_init, app_settings
# from repromon_app.db import db_init
from repromon_app.service import SecSysService
from repromon_app.srv import create_fastapi_app
from repromon_tools import setup_db

# import threading

logger = logging.getLogger(__name__)
#

Expand Down

0 comments on commit e04b0ac

Please sign in to comment.