Skip to content

Commit 08922e4

Browse files
authored
Merge pull request #408 from buildkite/update-docs-for-bktec-run
Update internal docs to use `bktec run` command
2 parents c9091c7 + b9d835a commit 08922e4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ To parallelize your tests in your Buildkite build, you can amend your pipeline s
7272
```
7373
steps:
7474
- name: "Rspec"
75-
command: ./bktec
75+
command: ./bktec run
7676
parallelism: 10
7777
env:
7878
BUILDKITE_TEST_ENGINE_SUITE_SLUG: my-suite

docs/gotest.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export BUILDKITE_TEST_ENGINE_SUITE_SLUG=your-suite-slug
1515
export BUILDKITE_TEST_ENGINE_API_ACCESS_TOKEN=your-token
1616

1717
# Run the test engine client
18-
bktec
18+
bktec run
1919
```
2020

2121
> [!IMPORTANT]
@@ -51,7 +51,7 @@ Using `bktec` allows you to manage test states, such as muting flaky tests, dire
5151
```yaml
5252
- name: "Go test :golang:"
5353
commands:
54-
- bktec
54+
- bktec run
5555
env:
5656
...
5757
parallelism: 2 # This activate test splitting!
@@ -75,7 +75,7 @@ export BUILDKITE_TEST_ENGINE_RETRY_COUNT=1
7575
```yaml
7676
- name: "Go test :golang:"
7777
commands:
78-
- bktec
78+
- bktec run
7979
env:
8080
BUILDKITE_ANALYTICS_TOKEN: your-suite-token # For test collector
8181
BUILDKITE_TEST_ENGINE_SUITE_SLUG: your-suite-slug

docs/pytest-pants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Only running `pants test` with `python_test` targets is supported at this time.
3131
```sh
3232
export BUILDKITE_TEST_ENGINE_TEST_RUNNER=pytest-pants
3333
export BUILDKITE_TEST_ENGINE_TEST_CMD="pants --filter-target-type=python_test --changed-since=HEAD~1 test -- --json={{resultPath}} --merge-json"
34-
bktec
34+
bktec run
3535
```
3636

3737
## Configure test command

0 commit comments

Comments
 (0)