This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ray.git


The following commit(s) were added to refs/heads/main by this push:
     new 01508b3  test: fix the failure test case (#26)
01508b3 is described below

commit 01508b3d55d10afac20cf622390e28370be70b5a
Author: SunisDown <[email protected]>
AuthorDate: Fri Oct 11 22:15:12 2024 +0800

    test: fix the failure test case (#26)
---
 README.md                            | 2 +-
 datafusion_ray/tests/test_context.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index d69ee68..0f2722e 100644
--- a/README.md
+++ b/README.md
@@ -102,7 +102,7 @@ Whenever rust code changes (your changes or via `git pull`):
 
 ```bash
 # make sure you activate the venv using "source venv/bin/activate" first
-maturin develop python -m pytest 
+maturin develop; python -m pytest 
 ```
 
 ## Testing
diff --git a/datafusion_ray/tests/test_context.py 
b/datafusion_ray/tests/test_context.py
index d138620..3e90ff4 100644
--- a/datafusion_ray/tests/test_context.py
+++ b/datafusion_ray/tests/test_context.py
@@ -19,6 +19,6 @@ import pytest
 from datafusion_ray import Context
 
 def test():
-    ctx = Context(1, False)
+    ctx = Context(1)
     ctx.register_csv('tips', 'examples/tips.csv', True)
     ctx.plan("SELECT * FROM tips")


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to