Skip to content

Commit

Permalink
SP Dicom test running locally but not on the CI[skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouget committed Nov 19, 2024
1 parent d982e45 commit d73c4df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: |
pip install pytest-qt pytest-cov pytest-timeout
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX
pytest -vvv --cov=gui --cov=utils ${{github.workspace}}/integration_tests --cov-report=xml --timeout=60
pytest -vvv --cov=gui --cov=utils ${{github.workspace}}/integration_tests --cov-report=xml --timeout=60 --log-cli-level=DEBUG
- name: Build software
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import shutil
import logging
from time import sleep

import requests
Expand Down
3 changes: 0 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ def main(argv):
# gui_usage = int(arg)
try:
from utils.software_config import SoftwareConfigResources
# logging.basicConfig(filename=SoftwareConfigResources.getInstance().get_session_log_filename(), filemode='w',
# format="%(asctime)s ; %(name)s ; %(levelname)s ; %(message)s", datefmt='%d/%m/%Y %H.%M')
# logging.getLogger().setLevel(logging.DEBUG)
logger = logging.getLogger()
handler = logging.FileHandler(filename=SoftwareConfigResources.getInstance().get_session_log_filename(),
mode='w', encoding='utf-8')
Expand Down

0 comments on commit d73c4df

Please sign in to comment.