Skip to content

Commit

Permalink
Fix test_gui and test_dummy
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneVoss committed Jan 11, 2024
1 parent d68a985 commit 744566a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,6 @@ jobs:
coverage.xml
coverage
if-no-files-found: ignore
- name: Upload Jupyter book for pages
# This is not a normal artifact but one that can be deployed to the GitHub pages in the next step
uses: actions/upload-pages-artifact@v3
with:
name: github-pages # This name may not be changed according to the documentation
path: ./coverage
if-no-files-found: ignore

Jupyter:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion tests/test_dummy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import platform


def test_dummy():
print('The dummy test is executed.')
print('Running on python version {}'.format(platform.python_version()))
pass
pass
8 changes: 5 additions & 3 deletions tests/test_gui.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import logging

from loadscompare import compare
from modelviewer import view

try:
from loadscompare import compare
from modelviewer import view
except: ImportError
pass

class TestLoadsCompare():

Expand Down

0 comments on commit 744566a

Please sign in to comment.