mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
## Summary Extracts `collectEnvFromLabels` to a separate module, so it can be used in the flaky test runner. With this, the label `ci:use-chrome-beta` will be passed along to the flaky test runner, allowing for flaky testing on chrome beta. Other labels we treat as modifiers for PR behavior through setting env variables should also be added to this set of mapping.
16 lines
698 B
TypeScript
16 lines
698 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the "Elastic License
|
|
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
|
|
* Public License v 1"; you may not use this file except in compliance with, at
|
|
* your election, the "Elastic License 2.0", the "GNU Affero General Public
|
|
* License v3.0 only", or the "Server Side Public License, v 1".
|
|
*/
|
|
|
|
export * from './agent_images';
|
|
export * from './buildkite';
|
|
export * as CiStats from './ci-stats';
|
|
export * from './github';
|
|
export * as TestFailures from './test-failures';
|
|
export * from './utils';
|
|
export * from './pr_labels';
|