Skip to content

Commit

Permalink
fix build order (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebattat authored Aug 28, 2023
1 parent b3cf076 commit 03817e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Perf_Env_Build_Test_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ jobs:
update_grafana_dashboard:
# update grafana dashboard with latest product versions/ grafonnet code
name: update_grafana_dashboard
needs: [ unittest, integration_test, pypi_upload, pypi_validate ]
needs: [ unittest, integration_test, pypi_upload, pypi_validate, quay_upload ]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_fetch_all_dashboards():
if test_environment_variable.get('grafana_url'):
grafana_operations = GrafanaOperations(grafana_url=test_environment_variable.get('grafana_url', ''),
grafana_api_key=test_environment_variable.get('grafana_api_key', ''),
grafana_json=test_environment_variable.get('grafana_json', ''))
grafana_json_path=test_environment_variable.get('grafana_json_path', ''))
all_dashboards = grafana_operations.fetch_all_dashboards()
assert all_dashboards
else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __get_test_environment_variable():
# Grafana
test_environment_variable['grafana_url'] = EnvironmentVariables.get_env('GRAFANA_URL', '')
test_environment_variable['grafana_api_key'] = EnvironmentVariables.get_env('GRAFANA_API_KEY', '')
test_environment_variable['grafana_json'] = EnvironmentVariables.get_env('GRAFANA_JSON', '')
test_environment_variable['grafana_json_path'] = EnvironmentVariables.get_env('GRAFANA_JSON_PATH', '')

# end dynamic parameters - configure for local run
##################################################################################################
Expand Down

0 comments on commit 03817e8

Please sign in to comment.