diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a144ac6..e3d41573 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project closely adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.200.0 +- change - increase the log level of scheduling a feature file + ## 0.199.0 - chore - remove deprecated CI - chore - add PR template diff --git a/features/cli/run_with_workers.feature b/features/cli/run_with_workers.feature index 1a6c2d73..e5376cd8 100644 --- a/features/cli/run_with_workers.feature +++ b/features/cli/run_with_workers.feature @@ -14,11 +14,16 @@ Feature: Run with workers Given I run the command "cucu run data/features/slow_features --workers 4 --generate-report --report {CUCU_RESULTS_DIR}/generate_report_with_workers_report --results {CUCU_RESULTS_DIR}/generate_report_with_workers_results" and expect exit code "0" Then I should see a file at "{CUCU_RESULTS_DIR}/generate_report_with_workers_report/index.html" - Scenario: User gets only dots in the output when running with workers + Scenario: User gets scheduling info and dots in the output when running with workers Given I run the command "cucu run data/features/slow_features --workers 3 --results {CUCU_RESULTS_DIR}/dots_in_report_with_workers_results" and save stdout to "STDOUT" and expect exit code "0" - Then I should see "{STDOUT}" is equal to the following: + Then I should see "{STDOUT}" matches the following: """ - ..... + .* INFO scheduled feature file .* + .* INFO scheduled feature file .* + .* INFO scheduled feature file .* + .* INFO scheduled feature file .* + .* INFO scheduled feature file .* + \.\.\.\.\. """ Scenario: User gets progress even when a step is in a retry() block diff --git a/pyproject.toml b/pyproject.toml index 398f6dfb..5f27ed69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cucu" -version = "0.199.0" +version = "0.200.0" license = "MIT" description = "Easy BDD web testing" authors = ["Domino Data Lab "] diff --git a/src/cucu/cli/core.py b/src/cucu/cli/core.py index 02bd3a63..83ec66a3 100644 --- a/src/cucu/cli/core.py +++ b/src/cucu/cli/core.py @@ -388,7 +388,7 @@ def runtime_exit(): }, task_timeout=float(feature_timeout), ) - logger.debug(f"scheduled feature file {feature_filepath}") + logger.info(f"scheduled feature file {feature_filepath}") # poll while we have running tasks until the overall time limit task_failed = {}