Skip to content

Commit cebf917

Browse files
abnboukeversteegh
authored andcommitted
Move betterproto/tests → tests
1 parent 8864f4f commit cebf917

File tree

112 files changed

+27
-27
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+27
-27
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
.pytest_cache
77
.python-version
88
build/
9-
betterproto/tests/output_*
9+
tests/output_*
1010
**/__pycache__
1111
dist
1212
**/*.egg-info

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ help: ## - Show this help.
66
# Dev workflow tasks
77

88
generate: ## - Generate test cases (do this once before running test)
9-
poetry run ./betterproto/tests/generate.py
9+
poetry run ./tests/generate.py
1010

1111
test: ## - Run tests
1212
poetry run pytest --cov betterproto
@@ -23,7 +23,7 @@ clean: ## - Clean out generated files from the workspace
2323
.pytest_cache \
2424
dist \
2525
**/__pycache__ \
26-
betterproto/tests/output_*
26+
tests/output_*
2727

2828
# Manual testing
2929

betterproto/tests/README.md renamed to tests/README.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.

betterproto/tests/generate.py renamed to tests/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import sys
77
from typing import Set
88

9-
from betterproto.tests.util import (
9+
from tests.util import (
1010
get_directories,
1111
inputs_path,
1212
output_path_betterproto,
File renamed without changes.

betterproto/tests/grpc/test_grpclib_client.py renamed to tests/grpc/test_grpclib_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import asyncio
2-
from betterproto.tests.output_betterproto.service.service import (
2+
from tests.output_betterproto.service.service import (
33
DoThingResponse,
44
DoThingRequest,
55
GetThingRequest,

betterproto/tests/grpc/thing_service.py renamed to tests/grpc/thing_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from betterproto.tests.output_betterproto.service.service import (
1+
from tests.output_betterproto.service.service import (
22
DoThingResponse,
33
DoThingRequest,
44
GetThingRequest,

0 commit comments

Comments
 (0)