We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da615e4 commit 8ce8c16Copy full SHA for 8ce8c16
docs/community/contribute/02_workflow.md
@@ -25,6 +25,12 @@ pytest -m core
25
or any specific backends (`ibis/backends`) this material isn't necessary to
26
follow to make a pull request.
27
28
+First, we need to download example data to run the tests successfully:
29
+
30
+```sh
31
+just download-data
32
+```
33
34
To run the tests for a specific backend (e.g. sqlite):
35
36
```sh
@@ -50,14 +56,6 @@ export PGPASSWORD=postgres
50
56
psql -t -A -h localhost -U postgres -d ibis_testing -c "select 'success'"
51
57
```
52
58
53
-## Download Test Data
54
-
55
-Backends need to be populated with test data to run the tests successfully:
-```sh
-just download-data
59
-```
60
61
## Writing the commit
62
63
Ibis follows the [Conventional Commits](https://www.conventionalcommits.org/) structure.
0 commit comments