Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  support blackbox setting marks on failures
  • Loading branch information
Baptouuuu committed Sep 2, 2023
2 parents 4a52ee2 + c59b844 commit 6a80942
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.6.0 - 2023-09-02

### Added

- Support BlackBox setting marks on failures

## 3.5.0 - 2023-07-15

### Changed
Expand Down
6 changes: 5 additions & 1 deletion src/Trigger/BlackBox.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ private function run(Console $console): Console
/** @var Map<non-empty-string, string> */
$variables = $console
->variables()
->filter(static fn($key) => $key === 'PATH');
->filter(static fn($key) => \in_array(
$key,
['PATH', 'LC_TERMINAL'],
true,
));

$process = $this
->processes
Expand Down

0 comments on commit 6a80942

Please sign in to comment.