Skip to content

Commit

Permalink
do not need flux accounting
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Mar 7, 2023
1 parent f2d70a7 commit b08b500
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
fail-fast: false
matrix:
# This is a matrix of test commands and containers, MiniKube is assumed to be running
test: [["python ./sdk/python/v1alpha1/examples/port-forward.py", "ghcr.io/rse-ops/accounting:app-latest"],
["pytest -xs ./tests/python/test_*.py", "ghcr.io/rse-ops/accounting:app-latest"]]
test: [["python ./sdk/python/v1alpha1/examples/port-forward.py", "ghcr.io/flux-framework/flux-restful-api:latest"],
["pytest -xs ./tests/python/test_*.py", "ghcr.io/flux-framework/flux-restful-api:latest"]]

steps:
- name: Checkout the code
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/v1alpha1/examples/port-forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def create_minicluster():
# Here is our main container with Flux accounting
# run_flux True is required here
container = MiniClusterContainer(
image="ghcr.io/rse-ops/accounting:app-latest", run_flux=True
image="ghcr.io/flux-framework/flux-restful-api:latest", run_flux=True
)

# Two users (set their passwords so we know)
Expand Down
4 changes: 2 additions & 2 deletions tests/python/test_multi_tenant.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def create_minicluster():
# Here is our main container with Flux accounting
# run_flux True is required here
container = MiniClusterContainer(
image="ghcr.io/rse-ops/accounting:app-latest", run_flux=True
image="ghcr.io/flux-framework/flux-restful-api:latest", run_flux=True
)

# Two users (set their passwords so we know)
Expand Down Expand Up @@ -161,7 +161,7 @@ def test_multi_tenant():
print(f"Job Output: {output}")

# working on signing as user - TBA
# assert output and user in output
assert output and user in output

# How to cleanup
print("Cleaning up MiniCluster!")
Expand Down

0 comments on commit b08b500

Please sign in to comment.