File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,9 +50,8 @@ There are some tools that will be helpful to you in developing locally. While th
5050These are the tools used in ` dbt-jobs-as-code ` development and testing:
5151
5252- [ ` poetry ` ] ( https://python-poetry.org/docs/ ) for packaging and virtual environment setup.
53- - [ ` pytest ` ] ( https://docs.pytest.org/en/latest/ ) to define, discover, and run tests
54- - [ ` flake8 ` ] ( https://flake8.pycqa.org/en/latest/ ) for code linting
55- - [ ` black ` ] ( https://github.com/psf/black ) for code formatting
53+ - [ ` pytest ` ] ( https://docs.pytest.org/en/latest/ ) to define, discover, and run tests.
54+ - [ ` ruff ` ] ( https://github.com/astral-sh/ruff ) for code linting and formatting.
5655
5756A deep understanding of these tools in not required to effectively contribute to` dbt-jobs-as-code ` , but we recommend
5857checking out the attached documentation if you're interested in learning more about each one.
@@ -82,10 +81,10 @@ With a virtualenv active and dev dependencies installed you can do things like:
8281
8382``` sh
8483# Run all unit tests in a file
85- python3 -m pytest tests/exporter/test_export.py
84+ poetry run pytest tests/exporter/test_export.py
8685
8786# Run a specific unit test
88- python3 -m pytest tests/exporter/test_export.py::test_export_jobs_yml
87+ poetry run pytest tests/exporter/test_export.py::test_export_jobs_yml
8988```
9089
9190## Submitting a Pull Request
You can’t perform that action at this time.
0 commit comments