Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Wiggins authored and Roy Wiggins committed Aug 21, 2024
1 parent ce78f17 commit fe6c9f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python -m pip install --upgrade pip
pip install pip-tools
if [ -f requirements.txt ]; then pip-sync requirements.txt dev-requirements.txt; fi
sudo apt-get install -y dcmtk
sudo apt-get install -y build-essential dcmtk inetutils-ping libqt5core5a
pip install flake8 pytest pytest-asyncio
- name: Lint with flake8
run: |
Expand All @@ -42,5 +42,4 @@ jobs:
python -m pytest -vvv tests
- name: Check getdcmtags version
run: |
sudo apt-get install -y build-essential dcmtk inetutils-ping libqt5core5a
cd getdcmtags && ./check_version.sh
2 changes: 1 addition & 1 deletion alembic/versions/6041e3878f32_self_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def upgrade():
if dialect.name == "sqlite":
jsonb = sa.Text() # type: ignore
else:
jsonb = postgresql.JSONB(astext_type=sa.Text()) # type: ignore
jsonb = JSONB(astext_type=sa.Text()) # type: ignore

op.create_table(
"tests",
Expand Down

0 comments on commit fe6c9f1

Please sign in to comment.