Skip to content

Commit 1093b49

Browse files
Merge pull request #9752 from antedeguemon/antedeguemon-fix-elixir-paths
docs: Fix path for Elixir tests
2 parents 874fa4c + b8fd390 commit 1093b49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/guides/modules/optimize/pages/use-the-circleci-cli-to-split-tests.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ jobs:
317317
- run:
318318
name: Run tests
319319
command: |
320-
circleci tests glob 'lib/**/*_test.exs'
320+
circleci tests glob 'test/**/*_test.exs'
321321
| circleci tests run --command='xargs -n1 echo > test_file_paths.txt'
322322

323323
mix ecto.setup --quiet

docs/guides/modules/test/pages/rerun-failed-tests.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Ensure you are using `xargs` in your `circleci tests run` command to pass the li
242242
- run:
243243
name: Run tests
244244
command: |
245-
circleci tests glob 'lib/**/*_test.exs'
245+
circleci tests glob 'test/**/*_test.exs'
246246
| circleci tests run --command='xargs -n1 echo > test_file_paths.txt'
247247

248248
mix ecto.setup --quiet

0 commit comments

Comments
 (0)