Skip to content

Commit

Permalink
Incorporate review feedback (batched suggestions) # 820
Browse files Browse the repository at this point in the history
Co-authored-by: Johannes Visintini <[email protected]>
  • Loading branch information
mmerdes and joker234 committed Sep 13, 2024
1 parent 25a80e4 commit 5b6135a
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
3 changes: 1 addition & 2 deletions regression-tests/__run_hurl_tests_for_stage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
rm -rf report
mkdir report

hurl *.hurl --report-html report

hurl *.hurl --report-html report
printf "\n\nhurl report: file://$PWD/report/index.html\n"

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POST {{base_url}}/indicators/mapping-saturation
POST {{BASE_URL}}/indicators/mapping-saturation
accept: application/json
[Options]
verbose: true
Expand Down
2 changes: 1 addition & 1 deletion regression-tests/metadata.hurl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GET {{base_url}}/metadata?project=all
GET {{BASE_URL}}/metadata?project=all
accept: application/json
[Options]
verbose: true
Expand Down
2 changes: 1 addition & 1 deletion regression-tests/roads_adminarea_roadcomparison.hurl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POST {{base_url}}/indicators/road-comparison
POST {{BASE_URL}}/indicators/road-comparison
accept: application/json
[Options]
verbose: true
Expand Down
2 changes: 1 addition & 1 deletion regression-tests/roads_polygon_attributecompleteness.hurl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POST {{base_url}}/indicators/attribute-completeness
POST {{BASE_URL}}/indicators/attribute-completeness
accept: application/json
[Options]
verbose: true
Expand Down
2 changes: 1 addition & 1 deletion regression-tests/roads_polygon_mappingsaturation.hurl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POST {{base_url}}/indicators/mapping-saturation
POST {{BASE_URL}}/indicators/mapping-saturation
accept: application/json
[Options]
verbose: true
Expand Down
3 changes: 2 additions & 1 deletion regression-tests/run_hurl_tests_DEV.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

export HURL_base_url=http://127.0.0.1:8080
export HURL_BASE_URL=http://127.0.0.1:8080

cd "$(dirname "$0")"
./__run_hurl_tests_for_stage.sh
3 changes: 2 additions & 1 deletion regression-tests/run_hurl_tests_PROD.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

export HURL_base_url=https://api.quality.ohsome.org/v1
export HURL_BASE_URL=https://api.quality.ohsome.org/v1

cd "$(dirname "$0")"
./__run_hurl_tests_for_stage.sh
3 changes: 2 additions & 1 deletion regression-tests/run_hurl_tests_TEST.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

export HURL_base_url=https://api.quality.ohsome.org/v1-test
export HURL_BASE_URL=https://api.quality.ohsome.org/v1-test

cd "$(dirname "$0")"
./__run_hurl_tests_for_stage.sh

0 comments on commit 5b6135a

Please sign in to comment.