Skip to content

Commit

Permalink
add placeholder for new test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-v committed Sep 7, 2023
1 parent 2961286 commit 2615083
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion redun/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from redun.executors.aws_batch import AWSBatchExecutor
from redun.executors.aws_glue import AWSGlueExecutor
from redun.executors.docker import DockerExecutor
from redun.executors.postgres import PgExecutor

try:
from redun.executors.k8s import K8SExecutor
Expand All @@ -14,6 +13,11 @@
except (ImportError, ModuleNotFoundError):
# Skip gcp_batch executor if google-cloud-batch is not installed.
pass
try:
from redun.executors.postgres import PgExecutor
except (ImportError, ModuleNotFoundError):
# Skip pg executor if psycopg2 is not installed.
pass
from redun.executors.local import LocalExecutor
from redun.file import Dir, File, ShardedS3Dataset
from redun.handle import Handle
Expand Down
2 changes: 2 additions & 0 deletions redun/tests/test_pg_executor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_pg_executor():
assert False, "not implemented"

0 comments on commit 2615083

Please sign in to comment.