Skip to content

Commit

Permalink
Skip integration tests when executed from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wdolek committed Aug 1, 2024
1 parent 78c5ffb commit e574e5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
run: dotnet build --no-restore --configuration Release

- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
run: dotnet test --no-build --configuration Release --verbosity normal --filter "TestCategory!=Integration"
2 changes: 1 addition & 1 deletion .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: dotnet build --no-restore --configuration Release

- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
run: dotnet test --no-build --configuration Release --verbosity normal --filter "TestCategory!=Integration"

- name: Pack `W4k.Extensions.Configuration.Aws.SecretsManager`
run: dotnet pack --no-build --configuration Release -p:Version=${{ github.event.inputs.version }} -o artifacts
Expand Down

0 comments on commit e574e5a

Please sign in to comment.