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

[Backport 1.2.latest] Pin pytest in dev-requirements.txt #9479

Merged
merged 5 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/structured-logging-schema-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
DBT_TEST_USER_1: dbt_test_user_1
DBT_TEST_USER_2: dbt_test_user_2
DBT_TEST_USER_3: dbt_test_user_3
# Rust debugging
RUST_BACKTRACE: full

steps:
- name: checkout dev
Expand Down Expand Up @@ -70,6 +72,12 @@ jobs:
- name: Run integration tests
run: tox -e integration -- -nauto

- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: dbt-log
path: dbt-core/logs/dbt.log

# apply our schema tests to every log event from the previous step
# skips any output that isn't valid json
- uses: actions-rs/cargo@v1
Expand Down
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ipdb
mypy==0.961
pip-tools
pre-commit
pytest
pytest~=7.4
pytest-cov
pytest-csv
pytest-csv~=3.0
pytest-dotenv
pytest-logbook
pytest-mock
Expand Down
Loading