Page MenuHomePhabricator

adee_wmde (Adee Ritman)
User

Today

  • No visible events.

Tomorrow

  • No visible events.

Wednesday

  • No visible events.

User Details

User Since
May 4 2023, 9:44 AM (144 w, 3 d)
Availability
Available
LDAP User
Unknown
MediaWiki User
Adee Ritman (WMDE) [ Global Accounts ]

Recent Activity

Nov 27 2025

adee_wmde updated Other Assignee for T409951: [Federated Values] Don't show remote items in global search, added: lojo_wmde.
Nov 27 2025, 1:26 PM · Wikibase Suite Team (Sprint 9 (Nov 25 - Dec 9))

Nov 12 2025

adee_wmde closed T406224: [Federated Values] Add option to enable Wikidata as a source for Item values in statements, a subtask of T406228: [Federated Values] MVP, as Resolved.
Nov 12 2025, 1:47 PM · Patch-For-Review, Wikibase Suite Team (Sprint 9 (Nov 25 - Dec 9)), Epic
adee_wmde closed T406224: [Federated Values] Add option to enable Wikidata as a source for Item values in statements as Resolved.
Nov 12 2025, 1:47 PM · Wikibase Suite Team
adee_wmde moved T406224: [Federated Values] Add option to enable Wikidata as a source for Item values in statements from Doing to Done on the Wikibase Suite Team (Sprint 7 (Oct 28 - Nov 11)) board.
Nov 12 2025, 11:00 AM · Wikibase Suite Team

Nov 11 2025

adee_wmde added a comment to T406224: [Federated Values] Add option to enable Wikidata as a source for Item values in statements.

The changes to add a federatedValuesEnabled flag are on Gerrit and marked as work in progress. They're meant to be amended by code from other tasks, where the flag can be used and propagated. For that reason, the open change set is linked to the epic ticket.

Nov 11 2025, 1:17 PM · Wikibase Suite Team

Oct 28 2025

adee_wmde moved T406224: [Federated Values] Add option to enable Wikidata as a source for Item values in statements from Backlog to Doing on the Wikibase Suite Team (Sprint 6 (Oct 14 - Oct 28)) board.
Oct 28 2025, 10:47 AM · Wikibase Suite Team

Oct 8 2025

adee_wmde claimed T406224: [Federated Values] Add option to enable Wikidata as a source for Item values in statements.
Oct 8 2025, 9:16 AM · Wikibase Suite Team

Sep 2 2025

adee_wmde closed T385018: [Bulk import] Investigate implementation options, a subtask of T378452: Bulk import: evaluate current tooling, as Resolved.
Sep 2 2025, 1:22 PM · Wikibase Suite Team
adee_wmde closed T385018: [Bulk import] Investigate implementation options as Resolved.
Sep 2 2025, 1:22 PM · Wikibase Suite Team
adee_wmde moved T385018: [Bulk import] Investigate implementation options from In Review to Done on the Wikibase Suite Team (Sprint 2 (Aug 19 - Sep 2)) board.
Sep 2 2025, 8:56 AM · Wikibase Suite Team

Aug 22 2025

adee_wmde moved T385018: [Bulk import] Investigate implementation options from Sprint Backlog to In Review on the Wikibase Suite Team (Sprint 2 (Aug 19 - Sep 2)) board.
Aug 22 2025, 1:46 PM · Wikibase Suite Team
adee_wmde added a comment to T385018: [Bulk import] Investigate implementation options.

The starting point for this ticket was using the REST API to get a sense of developer ergonomics. I wrote a simple client that reads JSON files and creates items in a local Wikibase instance via the API. That highlighted the issue of overhead, previously discussed in the first phase of technical research (T378452). To avoid that, I wrote a maintenance script that creates new items directly through entity store. This approach skips some unnecessary checks while preserving data consistency and correctly triggering secondary operations (search index, Recent Changes). The script runs inside the container, so only system administrators with shell access can run it (not to be confused with the "sysops" user group). This fits the assumed main use case for bulk data import, namely initial data import into a fresh instance, or periodic, admin-run updates.
To run the maintenance script, I wrote an item generator that outputs JSON files containing items with a simplified data model. Full benchmarking was out of scope, but I did explore different ways to speed up item creation.

  • ID generation is a major part of new item creation. I added two settings that are meant to keep ID generation from blocking the rest of the saving process:
$wgWBRepoSettings['idGenerator'] = 'mysql-upsert';
$wgWBRepoSettings['idGeneratorSeparateDbConnection'] = true;

I didn't notice an improvement on my machine, but they should help more at scale.
I also looked into the batching ingestion extension, which appears to do bulk ID assignment separately from saving items and skip some of the checks WikiPageEntityStore performs. That could be interesting for future performance comparisons, though I preferred not to reimplement ID generation as part of this prototype for safety and correctness.

  • Most of the performance improvement beyond not having the HTTP overhead comes from running multiple batches in parallel. The maintenance script itself simply reads a JSON file and creates items in a loop, but it's possible to split the input data into several files and invoke the script multiple times. I tried processing partitioned data with & and using parallel. The latter was slightly slower, likely due to output buffering. This should be validated on larger datasets.

Splitting the input into a small number of batches already delivers a significant improvement, but we need to measure multiple runs with different parameters to determine, for example, a balance between the number of jobs and batch size.
Compared to a new REST API endpoint, the maintenance script is easier to develop and deploy, is inherently limited to system admins, avoids HTTP overhead, and has no request size limit or rate limit. On the other hand, we would probably need to implement input deserialization and validation or try to modularize and reuse that part of the REST API. There is also no easy integration with external tools (e.g. Quickstatements) in this case.
For an MVP, I recommend

  • Tuning parameters based on more robust benchmarking.
  • Logging failures per item with meaningful error messages so users can re-run only on those items/batches.
  • Documenting the workflow, which might be initially complex for Wikibase admins (mounting data and running inside the container). Potentially attaching a simple bash script.
  • Implementing data pre-processing to create batch files, adding CSV support.
Aug 22 2025, 1:36 PM · Wikibase Suite Team

Aug 4 2025

adee_wmde added a comment to T385018: [Bulk import] Investigate implementation options.

As part of exploring solutions, I'm prototyping a maintenance script which would avoid the overhead of interacting with the REST API. So far I’ve been testing bulk item creation directly with entity store, and looking into ways to batch or parallelize the process to see if that yields better performance.

Aug 4 2025, 9:26 AM · Wikibase Suite Team

Jul 30 2025

adee_wmde placed T400122: [Bulk Import] Report about call-batching up for grabs.
Jul 30 2025, 12:47 PM · Wikibase Suite Team

Jun 10 2025

adee_wmde moved T396468: [Bulk Import] Prototype call-batching using the REST API from Sprint-∞ to Needs Preparation on the Wikibase Suite Team board.
Jun 10 2025, 11:32 AM · Wikibase Suite Team, Spike
adee_wmde created T396468: [Bulk Import] Prototype call-batching using the REST API.
Jun 10 2025, 11:09 AM · Wikibase Suite Team, Spike

Feb 13 2025

adee_wmde changed the status of T385018: [Bulk import] Investigate implementation options, a subtask of T378452: Bulk import: evaluate current tooling, from Open to In Progress.
Feb 13 2025, 1:00 PM · Wikibase Suite Team
adee_wmde changed the status of T385018: [Bulk import] Investigate implementation options from Open to In Progress.
Feb 13 2025, 1:00 PM · Wikibase Suite Team
adee_wmde moved T385018: [Bulk import] Investigate implementation options from Inbox to Sprint-∞ on the Wikibase Suite Team board.
Feb 13 2025, 1:00 PM · Wikibase Suite Team

Jan 29 2025

adee_wmde added a subtask for T378452: Bulk import: evaluate current tooling: T385018: [Bulk import] Investigate implementation options.
Jan 29 2025, 10:36 AM · Wikibase Suite Team
adee_wmde added a parent task for T385018: [Bulk import] Investigate implementation options: T378452: Bulk import: evaluate current tooling.
Jan 29 2025, 10:36 AM · Wikibase Suite Team
adee_wmde created T385018: [Bulk import] Investigate implementation options.
Jan 29 2025, 10:34 AM · Wikibase Suite Team

Jan 28 2025

adee_wmde moved T378452: Bulk import: evaluate current tooling from Doing to Done on the Wikibase Suite Team (Sprint-∞) board.
Jan 28 2025, 4:09 PM · Wikibase Suite Team
adee_wmde closed T378452: Bulk import: evaluate current tooling as Resolved.

Several tools for bulk data import into Wikibase were reviewed and categorized by their approach: API wrappers, scripts interacting with the database, and direct database access. These tools were compared on usability and performance, using benchmarks provided by their developers. The review also highlighted the lack of native API support for bulk import functionality. Most tools function as workarounds, emphasizing the limitations of the current API. The ideal solution would combine the high performance of direct database access with the Wikibase integration and features provided by the API.
These findings were shared with product for feedback. We also consulted with user research and colleagues who worked on the REST API, which led us to prioritize further research into extending the API with a bulk import method or implementing a CLI tool as a potential solution.

Jan 28 2025, 4:08 PM · Wikibase Suite Team

Oct 29 2024

adee_wmde changed the status of T378452: Bulk import: evaluate current tooling from Open to In Progress.
Oct 29 2024, 10:09 AM · Wikibase Suite Team
adee_wmde created T378452: Bulk import: evaluate current tooling.
Oct 29 2024, 10:09 AM · Wikibase Suite Team
adee_wmde closed T365981: Document how to use the WDQS/Sparkle in Deploy as Resolved.
Oct 29 2024, 9:53 AM · Wikibase Suite Team, Initial Setup & Configuration, Documentation

Oct 15 2024

adee_wmde added a comment to T365981: Document how to use the WDQS/Sparkle in Deploy.

PR

Oct 15 2024, 10:33 AM · Wikibase Suite Team, Initial Setup & Configuration, Documentation
adee_wmde moved T365981: Document how to use the WDQS/Sparkle in Deploy from Doing to In Review on the Wikibase Suite Team (Sprint-∞) board.
Oct 15 2024, 10:32 AM · Wikibase Suite Team, Initial Setup & Configuration, Documentation

Oct 1 2024

adee_wmde changed the status of T365981: Document how to use the WDQS/Sparkle in Deploy from Open to In Progress.
Oct 1 2024, 2:03 PM · Wikibase Suite Team, Initial Setup & Configuration, Documentation

Aug 28 2024

adee_wmde moved T365981: Document how to use the WDQS/Sparkle in Deploy from Prioritised + Refined (ready to be moved into the sprint) to Sprint-∞ on the Wikibase Suite Team board.
Aug 28 2024, 11:31 AM · Wikibase Suite Team, Initial Setup & Configuration, Documentation
adee_wmde claimed T365981: Document how to use the WDQS/Sparkle in Deploy.
Aug 28 2024, 11:30 AM · Wikibase Suite Team, Initial Setup & Configuration, Documentation

Aug 26 2024

adee_wmde closed T366148: Review extension list, some might come with MW already as Resolved.
Aug 26 2024, 1:13 PM · Wikibase Suite Team, Initial Setup & Configuration
adee_wmde added a comment to T366148: Review extension list, some might come with MW already.

Following up on the previous PR, I've found that our Visual Editor tests were only using the features as provided by the extension itself, so they could be removed. On the other hand, the Scribunto/Lua tests are testing our specific installation and configuration within the Wikibase image. I kept the suite and documented why it was necessary.
See https://github.com/wmde/wikibase-release-pipeline/pull/757.

Aug 26 2024, 1:13 PM · Wikibase Suite Team, Initial Setup & Configuration

Aug 21 2024

adee_wmde moved T366148: Review extension list, some might come with MW already from In Review to Doing on the Wikibase Suite Team (Sprint-∞) board.
Aug 21 2024, 11:52 AM · Wikibase Suite Team, Initial Setup & Configuration

Aug 8 2024

adee_wmde added a comment to T366148: Review extension list, some might come with MW already.

This PR https://github.com/wmde/wikibase-release-pipeline/pull/743 removes some of the tests related to those extensions that we no longer package (confirm edit, nuke, syntax highlight). Some other tests are still there (scribunto, visual editor), and I will look into what exactly they are testing and if they can also be removed or replaced. More extensive work to map out our testing landscape in-house and out is planned here: https://phabricator.wikimedia.org/T34522.

Aug 8 2024, 1:04 PM · Wikibase Suite Team, Initial Setup & Configuration

Aug 6 2024

adee_wmde moved T366148: Review extension list, some might come with MW already from Doing to In Review on the Wikibase Suite Team (Sprint-∞) board.
Aug 6 2024, 11:08 AM · Wikibase Suite Team, Initial Setup & Configuration

Jul 18 2024

adee_wmde added a comment to T366148: Review extension list, some might come with MW already.

For reference: comparing https://www.mediawiki.org/wiki/Bundled_extensions_and_skins to the extensions mentioned in variables.env, it seems that the shared extensions are exactly the ones in the task's description.

Jul 18 2024, 1:47 PM · Wikibase Suite Team, Initial Setup & Configuration

Jul 15 2024

adee_wmde claimed T366148: Review extension list, some might come with MW already.
Jul 15 2024, 12:35 PM · Wikibase Suite Team, Initial Setup & Configuration
adee_wmde moved T366148: Review extension list, some might come with MW already from Prioritised + Refined (ready to be moved into the sprint) to Sprint-∞ on the Wikibase Suite Team board.
Jul 15 2024, 12:35 PM · Wikibase Suite Team, Initial Setup & Configuration

Jun 20 2024

adee_wmde closed T365713: Versioning scheme POC, a subtask of T365569: Release based on MW 1.42 (deploy-3), as Resolved.
Jun 20 2024, 1:37 PM · Wikibase Suite Team, Release
adee_wmde closed T365713: Versioning scheme POC, a subtask of T367024: update release checklist in root readme, as Resolved.
Jun 20 2024, 1:37 PM · Wikibase Suite Team
adee_wmde closed T365713: Versioning scheme POC as Resolved.
Jun 20 2024, 1:37 PM · Wikibase Suite Team
adee_wmde added a comment to T365713: Versioning scheme POC.

https://github.com/wmde/wikibase-release-pipeline/pull/686

Jun 20 2024, 1:36 PM · Wikibase Suite Team

Jun 11 2024

adee_wmde moved T365713: Versioning scheme POC from Doing to In Review on the Wikibase Suite Team (Sprint-∞) board.
Jun 11 2024, 11:13 AM · Wikibase Suite Team

Jun 3 2024

adee_wmde updated the task description for T366066: Rename stable branches for new versioning scheme.
Jun 3 2024, 9:03 AM · Wikibase Suite Team
adee_wmde updated the task description for T366065: Tag old releases with new versioning scheme.
Jun 3 2024, 9:00 AM · Wikibase Suite Team
adee_wmde added a comment to T366066: Rename stable branches for new versioning scheme.
Jun 3 2024, 8:59 AM · Wikibase Suite Team
adee_wmde updated the task description for T366065: Tag old releases with new versioning scheme.
Jun 3 2024, 8:54 AM · Wikibase Suite Team

May 27 2024

adee_wmde renamed T365713: Versioning scheme POC from Implement versioning scheme to Versioning scheme POC.
May 27 2024, 9:45 AM · Wikibase Suite Team
adee_wmde updated the task description for T365713: Versioning scheme POC.
May 27 2024, 9:22 AM · Wikibase Suite Team

May 23 2024

adee_wmde created T365713: Versioning scheme POC.
May 23 2024, 1:31 PM · Wikibase Suite Team

Apr 29 2024

adee_wmde closed T361226: Release WMDE.18 - (MediaWiki 1.39.7) as Resolved.
Apr 29 2024, 8:43 AM · Wikibase Suite Team, Release

Apr 4 2024

adee_wmde changed the status of T361226: Release WMDE.18 - (MediaWiki 1.39.7) from Open to In Progress.
Apr 4 2024, 3:13 PM · Wikibase Suite Team, Release

Feb 27 2024

adee_wmde added a comment to T351723: Release Docs Update.

The section "release checklist in a more wordy way" of our Introduction to the Wikibase release pipeline is updated with a detailed explanation of the current checklist. We should keep updating it as we change our process.

Feb 27 2024, 11:51 AM · Wikibase Suite Team, wbSuite Release Pipeline, Speedier Release

Feb 13 2024

adee_wmde moved T351723: Release Docs Update from Doing to Sprint Backlog on the Wikibase Suite Team (Sprint-∞) board.
Feb 13 2024, 5:47 PM · Wikibase Suite Team, wbSuite Release Pipeline, Speedier Release

Feb 6 2024

adee_wmde changed the status of T351723: Release Docs Update from Open to In Progress.
Feb 6 2024, 2:52 PM · Wikibase Suite Team, wbSuite Release Pipeline, Speedier Release
adee_wmde claimed T351723: Release Docs Update.
Feb 6 2024, 2:52 PM · Wikibase Suite Team, wbSuite Release Pipeline, Speedier Release

Jan 23 2024

adee_wmde added a parent task for T355675: Upgrade java dependency from openjdk8: T354644: Release WMDE.17 - (MediaWiki 1.41.0).
Jan 23 2024, 1:38 PM · Wikibase Suite Team
adee_wmde added subtasks for T354644: Release WMDE.17 - (MediaWiki 1.41.0): T355675: Upgrade java dependency from openjdk8, T355674: Upgrade nodejs dependency from 14.X in WDQS Frontend Image.
Jan 23 2024, 1:38 PM · Wikibase Suite Team, Release
adee_wmde added a parent task for T355674: Upgrade nodejs dependency from 14.X in WDQS Frontend Image: T354644: Release WMDE.17 - (MediaWiki 1.41.0).
Jan 23 2024, 1:38 PM · Wikibase Suite Team, wbSuite Release Pipeline
adee_wmde created T355657: Review WDQS changes.
Jan 23 2024, 10:36 AM · Wikibase Suite Team, Release
adee_wmde removed a parent task for T343429: Create Install Script for wbSuite users to lead them through the configuration: T354646: Release WMDE.15 - (MediaWiki 1.39.6).
Jan 23 2024, 9:59 AM · Wikibase Suite Team, wbSuite Release Pipeline, Initial Setup & Configuration
adee_wmde removed a subtask for T354646: Release WMDE.15 - (MediaWiki 1.39.6): T343429: Create Install Script for wbSuite users to lead them through the configuration.
Jan 23 2024, 9:59 AM · Wikibase Suite Team, Release

Jan 22 2024

adee_wmde added a parent task for T343429: Create Install Script for wbSuite users to lead them through the configuration: T354646: Release WMDE.15 - (MediaWiki 1.39.6).
Jan 22 2024, 10:17 AM · Wikibase Suite Team, wbSuite Release Pipeline, Initial Setup & Configuration
adee_wmde added a subtask for T354646: Release WMDE.15 - (MediaWiki 1.39.6): T343429: Create Install Script for wbSuite users to lead them through the configuration.
Jan 22 2024, 10:17 AM · Wikibase Suite Team, Release

Dec 21 2023

adee_wmde closed T352761: Cover fedprops product testing sheet tests in test suite as Resolved.
Dec 21 2023, 1:21 PM · Wikibase Suite Team
adee_wmde closed T352761: Cover fedprops product testing sheet tests in test suite, a subtask of T350879: Product Verification coverage: Improve coverage where there are already related specs, as Resolved.
Dec 21 2023, 1:21 PM · Wikibase Suite Team, Test-Coverage
adee_wmde added a comment to T352761: Cover fedprops product testing sheet tests in test suite.

As the task description suggests, the product verification sheet's federated properties tab hasn't been used for the past few releases. Moreover, it's not clear what the scenarios that were being tested are. Instead, I reviewed our automated test suite, namely item.ts and prefatching.ts.
I set up a local Wikibase instance with federated properties by manually executing the tests. They seem to adequately cover the basic usage of this feature, including:

  • Creating an item and adding federated properties to it.
  • Ensuring that the item's data is retrievable in json format and not in unsupported formats like TTL and RDF.
  • Validating that the addition and deletion of federated properties are reflected in the item's history page and Wikibase's recent changes.
Dec 21 2023, 1:21 PM · Wikibase Suite Team

Dec 5 2023

adee_wmde added a comment to T350879: Product Verification coverage: Improve coverage where there are already related specs.

Quickstatements tests: https://github.com/wmde/wikibase-release-pipeline/pull/532

Dec 5 2023, 9:18 AM · Wikibase Suite Team, Test-Coverage

Nov 21 2023

adee_wmde added a comment to T350879: Product Verification coverage: Improve coverage where there are already related specs.

Special item test changes: https://github.com/wmde/wikibase-release-pipeline/pull/528

Nov 21 2023, 1:23 PM · Wikibase Suite Team, Test-Coverage

Nov 20 2023

adee_wmde moved T345224: Map out Wikibase Suite's Test landscape from Prioritised + Unrefined to Focus: Initial Setup and Configuration on the Wikibase Suite Team board.
Nov 20 2023, 12:05 PM · wbSuite Release Pipeline, Test-Coverage, Spike, Wikibase Suite Team

Nov 16 2023

adee_wmde renamed T343873: Flatten project file hierarchy from Improve Code Organisation to Flatten project file hierarchy.
Nov 16 2023, 12:28 PM · Wikibase Suite Team
adee_wmde updated the task description for T343873: Flatten project file hierarchy.
Nov 16 2023, 12:27 PM · Wikibase Suite Team
adee_wmde removed a project from T343873: Flatten project file hierarchy: Speedier Release.
Nov 16 2023, 12:26 PM · Wikibase Suite Team
adee_wmde moved T346156: Stop CI if Newer Commit on Branch from Topic: Documentation to Prioritised + Unrefined on the Wikibase Suite Team board.
Nov 16 2023, 12:18 PM · wbSuite Release Pipeline, Wikibase Suite Team

Nov 14 2023

adee_wmde changed the status of T350879: Product Verification coverage: Improve coverage where there are already related specs, a subtask of T344970: Cover as many paths as possible with automated tests. Define which paths need to be done manually (if any), from Open to In Progress.
Nov 14 2023, 8:28 AM · Wikibase Suite Team, Test-Coverage
adee_wmde changed the status of T350879: Product Verification coverage: Improve coverage where there are already related specs from Open to In Progress.
Nov 14 2023, 8:28 AM · Wikibase Suite Team, Test-Coverage

Oct 19 2023

adee_wmde claimed T348742: Rewrite LocalSettings.php on every container launch in order to reflect env var changes.
Oct 19 2023, 2:24 PM · Wikibase Suite Team, wbSuite Release Pipeline, Initial Setup & Configuration
adee_wmde changed the status of T348742: Rewrite LocalSettings.php on every container launch in order to reflect env var changes from Open to In Progress.
Oct 19 2023, 2:24 PM · Wikibase Suite Team, wbSuite Release Pipeline, Initial Setup & Configuration
adee_wmde moved T348742: Rewrite LocalSettings.php on every container launch in order to reflect env var changes from Focus: Initial Setup and Configuration to Sprint-∞ on the Wikibase Suite Team board.
Oct 19 2023, 2:24 PM · Wikibase Suite Team, wbSuite Release Pipeline, Initial Setup & Configuration
adee_wmde merged task T346224: Improve test execution speed, docker image load into T346740: Look into loading images on every test run.
Oct 19 2023, 1:58 PM · Speedier Release, Wikibase Suite Team
adee_wmde merged T346224: Improve test execution speed, docker image load into T346740: Look into loading images on every test run.
Oct 19 2023, 1:58 PM · Wikibase Suite Team, Spike
adee_wmde merged T346225: Improve Test Suite speed into T346740: Look into loading images on every test run.
Oct 19 2023, 1:58 PM · Wikibase Suite Team, Spike
adee_wmde merged task T346225: Improve Test Suite speed into T346740: Look into loading images on every test run.
Oct 19 2023, 1:58 PM · Speedier Release, Wikibase Suite Team

Oct 5 2023

adee_wmde moved T348113: Remove "ℹ️ Image____ already loaded." logging from Sprint Backlog to Done on the Wikibase Suite Team (Sprint-∞) board.
Oct 5 2023, 1:07 PM · Wikibase Suite Team
adee_wmde closed T348113: Remove "ℹ️ Image____ already loaded." logging as Resolved.

https://github.com/wmde/wikibase-release-pipeline/pull/485

Oct 5 2023, 1:07 PM · Wikibase Suite Team
adee_wmde claimed T348113: Remove "ℹ️ Image____ already loaded." logging.
Oct 5 2023, 1:06 PM · Wikibase Suite Team
adee_wmde moved T348113: Remove "ℹ️ Image____ already loaded." logging from Inbox to Sprint-∞ on the Wikibase Suite Team board.
Oct 5 2023, 1:06 PM · Wikibase Suite Team

Sep 28 2023

adee_wmde moved T346740: Look into loading images on every test run from In Review to Done on the Wikibase Suite Team (Sprint-∞) board.
Sep 28 2023, 2:50 PM · Wikibase Suite Team, Spike
adee_wmde closed T346740: Look into loading images on every test run as Resolved.

Went with a simple approach of checking if an image is already loaded before loading it. This means there weren't any changes to the interaction between building and testing. We should probably revisit that depending on / as part of T345689.

Sep 28 2023, 2:50 PM · Wikibase Suite Team, Spike
adee_wmde moved T346740: Look into loading images on every test run from Doing to In Review on the Wikibase Suite Team (Sprint-∞) board.
Sep 28 2023, 1:52 PM · Wikibase Suite Team, Spike
adee_wmde added a comment to T346740: Look into loading images on every test run.

https://github.com/wmde/wikibase-release-pipeline/pull/483

Sep 28 2023, 1:52 PM · Wikibase Suite Team, Spike

Sep 27 2023

adee_wmde changed the status of T346740: Look into loading images on every test run from Open to In Progress.
Sep 27 2023, 2:04 PM · Wikibase Suite Team, Spike
adee_wmde claimed T346740: Look into loading images on every test run.
Sep 27 2023, 2:03 PM · Wikibase Suite Team, Spike

Sep 26 2023

adee_wmde closed T346210: test_example action is wasteful as Resolved.
Sep 26 2023, 9:51 AM · Wikibase Suite Team
adee_wmde closed T346025: Talk to PRPL about wdio-wikibase, a subtask of T346030: Move to WDIO v8 for tests, as Resolved.
Sep 26 2023, 9:45 AM · Wikibase Suite Team
adee_wmde closed T346025: Talk to PRPL about wdio-wikibase as Resolved.
Sep 26 2023, 9:45 AM · Wikibase Suite Team

Sep 13 2023

adee_wmde added a comment to T343426: Run tests in a headed browser.

https://github.com/wmde/wikibase-release-pipeline/pull/469

Sep 13 2023, 12:45 PM · Wikibase Suite Team
adee_wmde moved T343426: Run tests in a headed browser from Doing to Done on the Wikibase Suite Team (Sprint-∞) board.
Sep 13 2023, 12:44 PM · Wikibase Suite Team