Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pytest examples for contributors #10478

Merged
merged 1 commit into from
Jul 23, 2024
Merged

Conversation

dbeatty10
Copy link
Contributor

resolves #9788 (again)

Problem

These pytest example commands don't work for me when following the contributing instructions, presumably because these tests moved to the dbt-adapters repo:

# run all unit tests in a file
python3 -m pytest tests/unit/test_base_column.py
# run a specific unit test
python3 -m pytest tests/unit/test_base_column.py::TestNumericType::test__numeric_type
# run specific Postgres functional tests
python3 -m pytest tests/functional/sources

Instead, I get errors.

Solution

These would probably be better examples to use (and they worked for me):

# run all unit tests in a file
python3 -m pytest tests/unit/test_invocation_id.py
# run a specific unit test
python3 -m pytest tests/unit/test_invocation_id.py::TestInvocationId::test_invocation_id
# run specific Postgres functional tests
python3 -m pytest tests/functional/sources

Testing

Manual testing of the code examples within CONTRIBUTING.md is sufficient to complete this issue since it doesn't affect the delivered code.

I tested that the updated example commands run without any errors.

Checklist

  • I have read the contributing guide and understand what's expected of me
  • I have run this code in development and it appears to resolve the stated issue
  • Tests are not required/relevant for this PR
  • This PR has no interface changes (e.g. macros, cli, logs, json artifacts, config files, adapter interface, etc)
  • This PR does not include any new type annotations because there are not any new and modified functions

@dbeatty10 dbeatty10 added the Skip Changelog Skips GHA to check for changelog file label Jul 23, 2024
@cla-bot cla-bot bot added the cla:yes label Jul 23, 2024
@dbeatty10 dbeatty10 requested a review from emmyoop July 23, 2024 17:23
@dbeatty10 dbeatty10 marked this pull request as ready for review July 23, 2024 17:23
@dbeatty10 dbeatty10 requested a review from a team as a code owner July 23, 2024 17:23
Copy link

codecov bot commented Jul 23, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 88.79%. Comparing base (79ad0a3) to head (dccdf23).

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #10478      +/-   ##
==========================================
- Coverage   88.85%   88.79%   -0.07%     
==========================================
  Files         180      180              
  Lines       22573    22573              
==========================================
- Hits        20058    20043      -15     
- Misses       2515     2530      +15     
Flag Coverage Δ
integration 86.00% <ø> (-0.14%) ⬇️
unit 62.22% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
Unit Tests 62.22% <ø> (ø)
Integration Tests 86.00% <ø> (-0.14%) ⬇️

@dbeatty10 dbeatty10 merged commit 229c537 into main Jul 23, 2024
69 of 70 checks passed
@dbeatty10 dbeatty10 deleted the dbeatty/update-pytest-examples branch July 23, 2024 17:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla:yes Skip Changelog Skips GHA to check for changelog file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update pytest examples for contributors
2 participants