Skip to content

Commit e957cf5

Browse files
committedAug 5, 2021
Use standardized name for integration test folder
This is the naming convention established in the standardized template project assets.
1 parent f9a2457 commit e957cf5

File tree

33 files changed

+4
-4
lines changed

33 files changed

+4
-4
lines changed
 

‎.github/workflows/test-go-integration-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- "go.sum"
1111
- "poetry.lock"
1212
- "pyproject.toml"
13-
- "test/**"
13+
- "tests/**"
1414
pull_request:
1515
paths:
1616
- ".github/workflows/test-go-integration-task.ya?ml"
@@ -20,7 +20,7 @@ on:
2020
- "go.sum"
2121
- "poetry.lock"
2222
- "pyproject.toml"
23-
- "test/**"
23+
- "tests/**"
2424

2525
jobs:
2626
test-go:

‎Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ tasks:
7777
- task: go:build
7878
- task: poetry:install-deps
7979
cmds:
80-
- poetry run pytest test
80+
- poetry run pytest tests
8181

8282
check:
8383
desc: Lint and check formatting of all files

‎docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ automatically.
162162
To run specific tests, you must run `pytest` from the virtual environment created by Poetry.
163163

164164
```
165-
poetry run pytest test/test_all.py::test_report_file
165+
poetry run pytest tests/test_all.py::test_report_file
166166
```
167167

168168
You can avoid writing the `poetry run` prefix each time by creating a new shell inside the virtual environment:
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.