diff --git a/Changelog.md b/Changelog.md index ce123906..3516d291 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,9 @@ # CHANGELOG All notable changes to this project will be documented here. +## [v1.10.1] +- Fixed bug where relevant test data was not included in the client while enqueuing tests (#265) + ## [v1.10.0] - Updated development docker image to connect to the development MarkUs docker image (#238) - Removed Tasty-Stats as a dependency for the haskell tester and added our own ingredient instead to collect stats (#259) diff --git a/src/autotester/cli.py b/src/autotester/cli.py index 048b6f20..17ac8501 100755 --- a/src/autotester/cli.py +++ b/src/autotester/cli.py @@ -95,6 +95,7 @@ def enqueue_tests( queue = _select_queue(len(test_data) > 1, request_high_priority) _print_queue_info(queue) for data in test_data: + client = get_client(client_type, {**client_data, **data}) kwargs = { "client_type": client_type, "test_data": {**client_data, **data},