Skip to content

Commit

Permalink
TEMP
Browse files Browse the repository at this point in the history
  • Loading branch information
matrss committed Feb 27, 2024
1 parent a0ebcb8 commit b300ce1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/testing-all-oses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["macos-12", "macos-14", "ubuntu-latest", "windows-latest"]
os: ["macos-14", "ubuntu-latest"]
order: ["normal", "reverse"]
headless-method: ["env QT_QPA_PLATFORM=offscreen"]
include:
- os: "ubuntu-latest"
order: "normal"
headless-method: "xvfb-run"
- os: "ubuntu-latest"
order: "reverse"
headless-method: "xvfb-run"
# os: ["macos-12", "macos-14", "ubuntu-latest", "windows-latest"]
# order: ["normal", "reverse"]
# headless-method: ["env QT_QPA_PLATFORM=offscreen"]
# include:
# - os: "ubuntu-latest"
# order: "normal"
# headless-method: "xvfb-run"
# - os: "ubuntu-latest"
# order: "reverse"
# headless-method: "xvfb-run"

steps:
# This workaround is necessary because PyFilesystem2 throws an InvalidCharsInPath error:
Expand Down
3 changes: 3 additions & 0 deletions tests/_test_mswms/test_mss_plot_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@ def test_VS_gallery_template(self):
# ToDo Test Data have to be written to a random tmp dir and that may become purged afterwards
templates_location = os.path.join(mslib.mswms.gallery_builder.DOCS_LOCATION, "plot_examples")
sys.path.append(templates_location)
import pathlib
print(f"{templates_location=}", file=sys.stderr)
print(f'{list(pathlib.Path(templates_location).rglob("*"))=}', file=sys.stderr)
from VS_template import VS_Template

img = self.plot(VS_Template(driver=self.vsec))
Expand Down

0 comments on commit b300ce1

Please sign in to comment.