Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): temporarily disable dd test visibility for unit tests #706

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,20 @@ jobs:
- name: Install dependencies
# Not using test:unit dependency in Turbo because Datadog Test Visibility requires only the test suite to be run
run: turbo run generate --filter=isomer-studio
- name: Configure Datadog Test Visibility
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
uses: datadog/test-visibility-github-action@v1
with:
languages: js
service: isomer-studio
api_key: ${{ secrets.DD_API_KEY }}
# - name: Configure Datadog Test Visibility
# env:
# DD_API_KEY: ${{ secrets.DD_API_KEY }}
# uses: datadog/test-visibility-github-action@v1
# with:
# languages: js
# service: isomer-studio
# api_key: ${{ secrets.DD_API_KEY }}
- name: Test Studio
# Loose env mode required for env vars to be passed to the run
run: turbo test-ci:unit --filter=isomer-studio --env-mode=loose
env:
# Required to allow Datadog to trace Vitest tests
NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }} --import ${{ env.DD_TRACE_ESM_IMPORT }}
# env:
# Required to allow Datadog to trace Vitest tests
# NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }} --import ${{ env.DD_TRACE_ESM_IMPORT }}

end-to-end-tests:
name: End-to-end tests
Expand Down
Loading