Skip to content

Commit 423ba23

Browse files
committed
Isolate failing windows test and add debug
1 parent 415ed03 commit 423ba23

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
# ruby: [2.7, 3.0, 3.1, 3.2]
17-
# operating-system: [ubuntu-latest]
16+
ruby: [2.7, 3.0, 3.1, 3.2]
17+
operating-system: [ubuntu-latest]
1818
include:
1919
# - ruby: head
2020
# operating-system: ubuntu-latest
2121
# - ruby: truffleruby-head
2222
# operating-system: ubuntu-latest
23-
- ruby: 2.7
23+
- ruby: 3.0
2424
operating-system: windows-latest
2525
# - ruby: jruby-head
2626
# operating-system: windows-latest

tests/units/test_command.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def test_command
539539
source_git_repo = File.expand_path(File.join('tests', 'files', 'working.git'))
540540
log_level = Logger::DEBUG
541541
logger = Logger.new(STDOUT, level: log_level)
542-
(0..1000).each do |i|
542+
(1..10000).each do |i|
543543
git = Git.bare(source_git_repo, log: logger)
544544
log_count = git.log(100).size
545545
if log_count != 64

0 commit comments

Comments
 (0)