Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,14 @@ jobs:
echo "Total: $(ls -1 allure-results 2>/dev/null | wc -l) files"

- name: Download previous Allure history
uses: actions/download-artifact@v4
uses: dawidd6/action-download-artifact@v6
if: always()
with:
workflow: ci.yaml
name: allure-history
path: allure-history
if_no_artifact_found: warn
search_artifacts: true
continue-on-error: true

- name: Install Allure CLI
Expand Down
1 change: 0 additions & 1 deletion tests/TheOfficeAPI.Tests.E2E/Level0E2ETests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System.Net;
using System.Text;
using System.Text.Json;
using Xunit;

namespace TheOfficeAPI.Tests.E2E;

Expand Down
1 change: 0 additions & 1 deletion tests/TheOfficeAPI.Tests.E2E/Level1E2ETests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Net;
using System.Text.Json;
using Xunit;

namespace TheOfficeAPI.Tests.E2E;

Expand Down
1 change: 0 additions & 1 deletion tests/TheOfficeAPI.Tests.E2E/Level2E2ETests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Net;
using System.Text.Json;
using Xunit;

namespace TheOfficeAPI.Tests.E2E;

Expand Down
1 change: 0 additions & 1 deletion tests/TheOfficeAPI.Tests.E2E/Level3E2ETests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Net;
using System.Text.Json;
using Xunit;

namespace TheOfficeAPI.Tests.E2E;

Expand Down
4 changes: 4 additions & 0 deletions tests/TheOfficeAPI.Tests.E2E/TheOfficeAPI.Tests.E2E.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@
</PackageReference>
</ItemGroup>

<ItemGroup>
<Using Include="Xunit"/>
</ItemGroup>

</Project>
Loading