Skip to content

Commit 783e4ea

Browse files
Fix pre-commit and remove redundant files
1 parent 2631819 commit 783e4ea

File tree

4 files changed

+5
-134
lines changed

4 files changed

+5
-134
lines changed

.github/workflows/e2e_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727
jobs:
2828
kubernetes:
2929

30-
runs-on: ubuntu-20.04-4core
30+
runs-on: ubuntu-20.04
3131

3232
steps:
3333
- name: Cleanup

tests/e2e/install-codeflare-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ ls
2020
# poetry install --with test,docs
2121

2222
# Return to the previous directory
23-
# cd ..
23+
# cd ..

tests/e2e/kind.sh

Lines changed: 0 additions & 129 deletions
This file was deleted.

tests/e2e/mnist_raycluster_sdk.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
from codeflare_sdk.job.jobs import DDPJobDefinition
1212

1313
namespace = sys.argv[1]
14-
ray_image = os.getenv('RAY_IMAGE')
15-
host = os.getenv('CLUSTER_HOSTNAME')
14+
ray_image = os.getenv("RAY_IMAGE")
15+
host = os.getenv("CLUSTER_HOSTNAME")
1616

1717
ingress_options = {}
1818
if host is not None:
@@ -33,7 +33,7 @@
3333
name="mnist",
3434
namespace=namespace,
3535
num_workers=1,
36-
head_cpus='500m',
36+
head_cpus="500m",
3737
head_memory=2,
3838
min_cpus="500m",
3939
max_cpus=1,

0 commit comments

Comments
 (0)