Skip to content

Commit

Permalink
fix: turn off instrumentation for ddev tests (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay authored Oct 29, 2023
1 parent 458d52c commit b07f65f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,14 @@ runs:
if: inputs.debug_enabled == 'true'

- name: Run test
# Allow ddev get to use a GitHub token to prevent rate limiting by tests
env:
# Allow ddev get to use a GitHub token to prevent rate limiting by tests
DDEV_GITHUB_TOKEN: ${{ inputs.token }}
# Don't try interactive behaviors
DDEV_NONINTERACTIVE: "true"
# Don't send telemetry to amplitude
DDEV_NO_INSTRUMENTATION: "true"

shell: bash
run: cd ${{ inputs.addon_path }} && bats tests

Expand Down

0 comments on commit b07f65f

Please sign in to comment.