Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix windows failure #197

Merged
merged 4 commits into from
Apr 6, 2025
Merged
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
13 changes: 13 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,21 @@ jobs:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
exclude:
- os: macOS-latest
arch: x86
- os: ubuntu-latest
arch: x86
- os: windows-latest
arch: x64
- os: windows-latest
version: 1.8
- os: windows-latest
version: 1.11
steps:
- uses: actions/[email protected]
- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion src/macros.jl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ those test in their own module.
Should only be created via the `@testitem` macro.
"""
struct TestItem
number::Base.RefValue{Int64} # populated by runtests coordinator once all test items are known
number::Base.RefValue{Int} # populated by runtests coordinator once all test items are known
name::String
id::String # in case file/name isn't a sufficiently stable identifier for reporting purposes
tags::Vector{Symbol}
Expand Down
Loading