Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: update MirServer references and refresh CI for LFS support #123

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
with:
repository: MirServer/checkbox-mir
repository: canonical/checkbox-mir
fetch-depth: 0

- name: Use the current mir-ci commit
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
python-version: "3.11"

- uses: actions/checkout@v4
with:
lfs: true

- id: pytest-args
name: Determine pytest arguments
Expand Down
2 changes: 1 addition & 1 deletion mir-ci/mir_ci/program/display_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def __aenter__(self) -> "DisplayServer":

async def __aexit__(self, *args):
# If Mir is run for too short a period of time it tends to not shut down correctly
# See https://github.com/MirServer/mir/issues/2845
# See https://github.com/canonical/mir/issues/2845
sleep_time = self.start_time + min_mir_run_time - time.time()
if sleep_time > 0:
await asyncio.sleep(sleep_time)
Expand Down
4 changes: 2 additions & 2 deletions mir-ci/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ dependencies = [
]

[project.urls]
"Homepage" = "https://github.com/MirServer/mir-ci"
"Bug Tracker" = "https://github.com/MirServer/mir-ci/issues"
"Homepage" = "https://github.com/canonical/mir-ci"
"Bug Tracker" = "https://github.com/canonical/mir-ci/issues"

[tool.hatch.metadata]
allow-direct-references = true
Expand Down
Loading