Skip to content

Commit

Permalink
add documentation on the airbyte-ci development process (#34543)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-airbyte committed Jan 27, 2024
1 parent 6f0fd7a commit 653acae
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions airbyte-ci/connectors/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,25 @@ However, this will not automatically install the dependencies for the local depe

Its often best to use the `poetry` steps instead.

#### Running Tests

From `airbyte-ci/connectors/pipelines`:
```bash
poetry run pytest tests
```

You can also run a subset of tests:
```bash
poetry run pytest pipelines/models/steps.py
```

More options, such as running test by keyword matching, are available - see the [pytest CLI documentation](https://docs.pytest.org/en/6.2.x/usage.html) for all the available options.```
#### Checking Code Format (Pipelines)

```bash
poetry run ruff check pipelines
```

## Commands reference

At this point you can run `airbyte-ci` commands.
Expand Down

0 comments on commit 653acae

Please sign in to comment.