Skip to content

Commit c6f96ae

Browse files
committed
fix sync test
1 parent 4eef973 commit c6f96ae

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/Tests/Sync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
public class Sync
1111
{
12-
[Fact(Skip = "Explicit")]
12+
[Fact]
13+
[Trait("Category", "Integration")]
1314
public async Task SyncCountryData()
1415
{
1516
var countriesPath = Path.GetFullPath(Path.Combine(DataLocations.DataPath, "countrycodes.txt"));

src/Tests/Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageReference Include="MarkdownSnippets.MsBuild" Version="17.0.0" PrivateAssets="All" />
77
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
88
<PackageReference Include="XunitContext" Version="1.5.1" />
9-
<PackageReference Include="Verify.Xunit" Version="1.0.0-beta.15" />
9+
<PackageReference Include="Verify.Xunit" Version="1.0.0-beta.23" />
1010
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
1111
<PackageReference Include="System.Net.Http" Version="4.3.4" />
1212
<PackageReference Include="Xunit" Version="2.4.1" />

src/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build_script:
55
- ps: >-
66
dotnet build src --configuration Release
77
8-
dotnet test src --configuration Release --no-build --no-restore
8+
dotnet test src --configuration Release --no-build --no-restore --filter Category!=Integration
99
test: off
1010
artifacts:
1111
- path: nugets\**\*.nupkg

0 commit comments

Comments
 (0)