Skip to content

Commit

Permalink
Output php configurations without escaping them #625 (#681)
Browse files Browse the repository at this point in the history
* ISSUE-625: output php configurations without scaping them

* ISSUE-625: test url with parameters

* ISSUE-625: add url with parameters

* ISSUE-625: fix visual diff with parameters end result

* ISSUE-625: silly typo :p

* ISSUE-625: not needed
  • Loading branch information
beto-aveiga committed Sep 4, 2024
1 parent 7f7c5e9 commit 774bd6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/TestTugboat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
echo " - foo" >> .tugboat/config.drainpipe-override.yml
echo " urls:" >> .tugboat/config.drainpipe-override.yml
echo " - /" >> .tugboat/config.drainpipe-override.yml
echo " - /?v=1" >> .tugboat/config.drainpipe-override.yml
echo " screenshot:" >> .tugboat/config.drainpipe-override.yml
echo " timeout: 45" >> .tugboat/config.drainpipe-override.yml
echo " visualdiff:" >> .tugboat/config.drainpipe-override.yml
Expand Down
1 change: 1 addition & 0 deletions .tugboat/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ services:
- foo
urls:
- /
- '/?v=1'
screenshot:
timeout: 45
visualdiff:
Expand Down
2 changes: 1 addition & 1 deletion scaffold/tugboat/config.yml.twig
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
{% endif %}
{% if overrides.php|length > 0 %}

{{ overrides.php }}
{{ overrides.php|raw }}
{% endif %}

{{ database_type }}:
Expand Down

0 comments on commit 774bd6f

Please sign in to comment.