Skip to content

Commit

Permalink
Prepare for merge
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymilne committed Oct 29, 2024
1 parent 265be4d commit d281fb6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-integration-vizro-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
os: windows-latest
label: Windows
is_pr:
- ${{ github.event_name != 'pull_request' }}
- ${{ github.event_name == 'pull_request' }}
exclude:
- is_pr: true
config:
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
os: windows-latest
label: Windows
is_pr:
- ${{ github.event_name != 'pull_request' }}
- ${{ github.event_name == 'pull_request' }}
exclude:
- is_pr: true
config:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration-vizro-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
os: windows-latest
label: Windows
is_pr:
- ${{ github.event_name != 'pull_request' }}
- ${{ github.event_name == 'pull_request' }}
exclude:
- is_pr: true
config:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit-vizro-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
os: windows-latest
label: Windows
is_pr:
- ${{ github.event_name != 'pull_request' }}
- ${{ github.event_name == 'pull_request' }}
exclude:
- is_pr: true
config:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit-vizro-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
os: windows-latest
label: Windows
is_pr:
- ${{ github.event_name != 'pull_request' }}
- ${{ github.event_name == 'pull_request' }}
exclude:
- is_pr: true
config:
Expand Down
2 changes: 1 addition & 1 deletion vizro-core/src/vizro/_vizro.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def _make_resource_spec(path: Path) -> _ResourceSpec:
# Get path relative to the vizro package root, where this file resides.
# This must be a posix path to work on Windows, so that we convert all \ to / and routing works correctly.
# See https://github.com/mckinsey/vizro/issues/836.
relative_path = path.relative_to(Path(__file__).parent)
relative_path = PurePosixPath(path.relative_to(Path(__file__).parent))

resource_spec: _ResourceSpec = {"namespace": "vizro", "relative_package_path": str(relative_path)}

Expand Down

0 comments on commit d281fb6

Please sign in to comment.