Skip to content

Commit

Permalink
Move fallback tests to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LuQQiu committed Mar 11, 2024
1 parent a56395d commit fc0b38f
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,6 @@ jobs:
--log-date-format="%H:%M:%S" \
tests/
- name: Run Fallback tests
run: |
pytest -vv \
--log-format="%(asctime)s %(levelname)s %(message)s" \
--log-date-format="%H:%M:%S" \
alluxiofs/tests/
lint:
name: lint
runs-on: ubuntu-latest
Expand Down
Empty file.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fsspec.tests.abstract as abstract

from alluxiofs.tests.derived.local.local_fallback_fixtures import (
from tests.fs.derived.local.local_fallback_fixtures import (
LocalFallbackFixtures,
)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fsspec.tests.abstract as abstract

from alluxiofs.tests.derived.memory.memory_fallback_fixtures import (
from tests.fs.derived.memory.memory_fallback_fixtures import (
MemoryFallbackFixtures,
)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fsspec.tests.abstract as abstract
import pytest

from alluxiofs.tests.derived.s3.s3_fallback_fixtures import S3FallbackFixtures
from tests.fs.derived.s3.s3_fallback_fixtures import S3FallbackFixtures


@pytest.mark.skip(reason="S3 credentials not set.")
Expand Down

0 comments on commit fc0b38f

Please sign in to comment.