Skip to content

Commit 4857c4d

Browse files
authored
Fix build (#28)
* Fix build (exclude example tests from build) * Update dependabot.yml
1 parent 37bcfe9 commit 4857c4d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ updates:
44
directory: "/" # Location of package manifests
55
schedule:
66
interval: "weekly"
7+
ignore:
8+
- dependency-name: "*Selenium*"
79

810
- package-ecosystem: "github-actions" # See documentation for possible values
911
directory: "/" # Location of package manifests

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848
- run: |
4949
echo Installed chromium version: ${{ steps.setup-chrome.outputs.chrome-version }}
5050
- name: Test
51-
run: dotnet test --no-build --configuration Release --verbosity normal
51+
run: dotnet test --filter FullyQualifiedName!~ExampleTests --no-build --configuration Release --verbosity normal

0 commit comments

Comments
 (0)