We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found the test instructions in Python and CONTRIBUTING not working.
when running OPENDAL_MEMORY_TEST=on pytest on my machine, all tests will skip due to this:
OPENDAL_MEMORY_TEST=on pytest
@pytest.fixture() def service_name(): service_name = os.environ.get("OPENDAL_TEST") if service_name is None: pytest.skip("OPENDAL_TEST not set") return service_name
Instead, one way to run all tests is: OPENDAL_TEST=fs opendal_fs_root=/tmp pytest -vk test fs can change to memory or others
OPENDAL_TEST=fs opendal_fs_root=/tmp pytest -vk test
fs
memory
The text was updated successfully, but these errors were encountered:
You are right. We recently updated our testing framework and have not updated the documentation. Would you like to submit a PR to update it?
Sorry, something went wrong.
Sure, I'd like to make a PR for that, also, I found a lot of Bindings Python CI here skipped, is it expected or due to the issue above?
Bindings Python CI here skipped
Those CI are only triggered while tagged.
Successfully merging a pull request may close this issue.
I found the test instructions in Python and CONTRIBUTING not working.
when running
OPENDAL_MEMORY_TEST=on pytest
on my machine, all tests will skip due to this:Instead, one way to run all tests is:
OPENDAL_TEST=fs opendal_fs_root=/tmp pytest -vk test
fs
can change tomemory
or othersThe text was updated successfully, but these errors were encountered: