From 229c537748bbca349d3b83b29291cc7cc8a68085 Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Tue, 23 Jul 2024 11:42:31 -0600 Subject: [PATCH] Update `pytest` examples for contributors (#10478) --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7bc8520e4fd..eafd4606b9f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -170,9 +170,9 @@ Finally, you can also run a specific test or group of tests using [`pytest`](htt ```sh # run all unit tests in a file -python3 -m pytest tests/unit/test_base_column.py +python3 -m pytest tests/unit/test_invocation_id.py # run a specific unit test -python3 -m pytest tests/unit/test_base_column.py::TestNumericType::test__numeric_type +python3 -m pytest tests/unit/test_invocation_id.py::TestInvocationId::test_invocation_id # run specific Postgres functional tests python3 -m pytest tests/functional/sources ```