We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43466ed commit 01508b3Copy full SHA for 01508b3
README.md
@@ -102,7 +102,7 @@ Whenever rust code changes (your changes or via `git pull`):
102
103
```bash
104
# make sure you activate the venv using "source venv/bin/activate" first
105
-maturin develop python -m pytest
+maturin develop; python -m pytest
106
```
107
108
## Testing
datafusion_ray/tests/test_context.py
@@ -19,6 +19,6 @@
19
from datafusion_ray import Context
20
21
def test():
22
- ctx = Context(1, False)
+ ctx = Context(1)
23
ctx.register_csv('tips', 'examples/tips.csv', True)
24
ctx.plan("SELECT * FROM tips")
0 commit comments