Skip to content

Commit

Permalink
docs: re-order when to download test data
Browse files Browse the repository at this point in the history
This probably needs to happend before actually running any tests.
  • Loading branch information
NickCrews authored and cpcloud committed Jan 20, 2023
1 parent da615e4 commit 8ce8c16
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions docs/community/contribute/02_workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ pytest -m core
or any specific backends (`ibis/backends`) this material isn't necessary to
follow to make a pull request.

First, we need to download example data to run the tests successfully:

```sh
just download-data
```

To run the tests for a specific backend (e.g. sqlite):

```sh
Expand All @@ -50,14 +56,6 @@ export PGPASSWORD=postgres
psql -t -A -h localhost -U postgres -d ibis_testing -c "select 'success'"
```

## Download Test Data

Backends need to be populated with test data to run the tests successfully:

```sh
just download-data
```

## Writing the commit

Ibis follows the [Conventional Commits](https://www.conventionalcommits.org/) structure.
Expand Down

0 comments on commit 8ce8c16

Please sign in to comment.