diff --git a/.github/workflows/package-Exporter.Stackdriver.yml b/.github/workflows/package-Exporter.Stackdriver.yml index 6cd1728bdd..05d9c536d8 100644 --- a/.github/workflows/package-Exporter.Stackdriver.yml +++ b/.github/workflows/package-Exporter.Stackdriver.yml @@ -33,7 +33,7 @@ jobs: run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true - name: dotnet test ${{env.PROJECT}} - run: dotnet test test/${{env.PROJECT}} + run: dotnet test test/${{env.PROJECT}}.Tests - name: dotnet pack ${{env.PROJECT}} run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build diff --git a/.github/workflows/package-Extensions.AWSXRay.yml b/.github/workflows/package-Extensions.AWSXRay.yml index 79e031a7d6..c98870df25 100644 --- a/.github/workflows/package-Extensions.AWSXRay.yml +++ b/.github/workflows/package-Extensions.AWSXRay.yml @@ -33,7 +33,7 @@ jobs: run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true - name: dotnet test ${{env.PROJECT}} - run: dotnet test test/${{env.PROJECT}} + run: dotnet test test/${{env.PROJECT}}.Tests - name: dotnet pack ${{env.PROJECT}} run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build diff --git a/.github/workflows/package-Instrumentation.Elasticsearch.yml b/.github/workflows/package-Instrumentation.Elasticsearch.yml index 038f2cafa1..bf65ad40f6 100644 --- a/.github/workflows/package-Instrumentation.Elasticsearch.yml +++ b/.github/workflows/package-Instrumentation.Elasticsearch.yml @@ -33,7 +33,7 @@ jobs: run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true - name: dotnet test ${{env.PROJECT}} - run: dotnet test test/${{env.PROJECT}} + run: dotnet test test/${{env.PROJECT}}.Tests - name: dotnet pack ${{env.PROJECT}} run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build diff --git a/.github/workflows/package-Instrumentation.EntityFrameworkCore.yml b/.github/workflows/package-Instrumentation.EntityFrameworkCore.yml index deba049a21..d428dc5ad5 100644 --- a/.github/workflows/package-Instrumentation.EntityFrameworkCore.yml +++ b/.github/workflows/package-Instrumentation.EntityFrameworkCore.yml @@ -33,7 +33,7 @@ jobs: run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true - name: dotnet test ${{env.PROJECT}} - run: dotnet test test/${{env.PROJECT}} + run: dotnet test test/${{env.PROJECT}}Tests - name: dotnet pack ${{env.PROJECT}} run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build diff --git a/.github/workflows/package-Instrumentation.MassTransit.yml b/.github/workflows/package-Instrumentation.MassTransit.yml index dbbb405b0a..40f4960ae3 100644 --- a/.github/workflows/package-Instrumentation.MassTransit.yml +++ b/.github/workflows/package-Instrumentation.MassTransit.yml @@ -33,7 +33,7 @@ jobs: run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true - name: dotnet test ${{env.PROJECT}} - run: dotnet test test/${{env.PROJECT}} + run: dotnet test test/${{env.PROJECT}}.Tests - name: dotnet pack ${{env.PROJECT}} run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build