Skip to content

Commit df1a03b

Browse files
authored
Merge pull request #87 from pgoslatara/up-to-date-contrib
2 parents 08613b5 + ee91378 commit df1a03b

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ There are some tools that will be helpful to you in developing locally. While th
5050
These 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

5756
A deep understanding of these tools in not required to effectively contribute to`dbt-jobs-as-code`, but we recommend
5857
checking 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

0 commit comments

Comments
 (0)