Skip to content

Commit f6a11fb

Browse files
committed
improve make and skip deprecation of google support
1 parent ffac8d4 commit f6a11fb

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,7 @@ install-uv: ## Ensure uv is installed
6767
fi
6868

6969
setup-venv: ## Create virtual environment
70-
@if [ ! -d .venv ]; then \
71-
echo "Creating virtual environment."; \
72-
uv venv $(PYTHON_ARG); \
73-
else \
74-
echo "Virtual environment already exists."; \
75-
fi
70+
uv venv $(PYTHON_ARG)
7671

7772
install-dependencies: setup-venv ## Install all dependencies including extras
7873
uv sync --all-extras

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,14 @@ markers = [
151151
"adls: marks a test as requiring access to adls compliant storage (use with --adls.account-name, --adls.account-key, and --adls.endpoint args)",
152152
"integration: marks integration tests against Apache Spark",
153153
"gcs: marks a test as requiring access to gcs compliant storage (use with --gs.token, --gs.project, and --gs.endpoint)",
154-
"benchmark: collection of tests to validate read/write performance before and after a change"
154+
"benchmark: collection of tests to validate read/write performance before and after a change",
155155
]
156156

157157
# Turns a warning into an error
158158
filterwarnings = [
159159
"error",
160+
# Ignore Python version deprecation warning from google.api_core while we still support 3.10
161+
"ignore:You are using a Python version.*which Google will stop supporting:FutureWarning:google.api_core",
160162
]
161163

162164
[tool.black]

0 commit comments

Comments
 (0)