diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cc346c7..8c1a0f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,14 +1,5 @@ version: 2 updates: - - package-ecosystem: "nuget" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "weekly" - groups: - selenium-dependencies: - patterns: - - "Selenium*" - - package-ecosystem: "github-actions" # See documentation for possible values directory: "/" # Location of package manifests schedule: diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 85b48ff..2c4af22 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -31,7 +31,7 @@ jobs: run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release - uses: nanasess/setup-chromedriver@v2 - name: Test - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test --filter FullyQualifiedName!~Selenate.Examples --no-build --configuration Release --verbosity normal automerge: needs: [build-and-test]