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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ runtime.*.liblouis/runtimes/

# Rider / ReSharper per-user settings
*.DotSettings.user

# Worktrees created by spawned Claude Code sessions
.claude/worktrees/
7 changes: 7 additions & 0 deletions LibLouis.NET.Test/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using Xunit;

// liblouis keeps global state (compiled table cache, log callback, data path) and is explicitly
// not thread safe - LibLouis serialises its own calls behind a lock for exactly that reason.
// xunit parallelises across test classes by default, which lets unsynchronised native calls race
// and produce spurious "could not be compiled" failures. Run the whole assembly serially.
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Loading