Skip to content

Commit

Permalink
refactor to move things into modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaigh0 committed Jul 31, 2024
1 parent 9d5ae0b commit d321fe4
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 222 deletions.
130 changes: 0 additions & 130 deletions ctest_output.txt

This file was deleted.

89 changes: 0 additions & 89 deletions ctest_output.xml

This file was deleted.

Empty file added ctest_parser/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
Empty file added database_handler/__init__.py
Empty file.
File renamed without changes.
Empty file added jenkins_handler/__init__.py
Empty file.
File renamed without changes.
6 changes: 3 additions & 3 deletions workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import urllib.request
import urllib.error

from database_handler import DatabaseHandler
from jenkins_handler import JenkinsHandler
from database_handler.database_handler import DatabaseHandler
from jenkins_handler.jenkins_handler import JenkinsHandler
from run_result import RunResult
from ctest_log_parser import CtestOutputParser
from ctest_parser.ctest_log_parser import CtestOutputParser


os_names_to_log_names = {'Windows': 'ctest_msys.log',
Expand Down

0 comments on commit d321fe4

Please sign in to comment.