-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bazel): integration test env variable expansion not respecting cu…
…stom variables The integration test rule currently does not respect custom variables that have been configured as part of the target. e.g. the following does not work: ```bzl integration_test( environment = { "TEST_ENV": "$(location blabla)" }, commands = [ "yarn test $${TEST_ENV} ], ) ``` This commit fixes that such custom variables are available for expansion when commands are executed.
- Loading branch information
1 parent
e34f1a6
commit 4c02c1b
Showing
2 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters