@@ -1359,11 +1359,15 @@ func TestGit(t *testing.T) {
1359
1359
as .NoError (gitCmd .Run (), "failed to init git repository" )
1360
1360
1361
1361
// run before adding anything to the index
1362
+ // we should pick up untracked files since we use `git ls-files -o`
1362
1363
treefmt (t ,
1363
1364
withConfig (configPath , cfg ),
1364
1365
withNoError (t ),
1365
1366
withStats (t , map [stats.Type ]int {
1366
- stats .Traversed : 0 ,
1367
+ stats .Traversed : 31 ,
1368
+ stats .Matched : 31 ,
1369
+ stats .Formatted : 31 ,
1370
+ stats .Changed : 0 ,
1367
1371
}),
1368
1372
)
1369
1373
@@ -1377,14 +1381,13 @@ func TestGit(t *testing.T) {
1377
1381
withStats (t , map [stats.Type ]int {
1378
1382
stats .Traversed : 31 ,
1379
1383
stats .Matched : 31 ,
1380
- stats .Formatted : 31 ,
1384
+ stats .Formatted : 0 ,
1381
1385
stats .Changed : 0 ,
1382
1386
}),
1383
1387
)
1384
1388
1385
- // remove python directory from the index
1386
- gitCmd = exec .Command ("git" , "rm" , "--cached" , "python/*" )
1387
- as .NoError (gitCmd .Run (), "failed to remove python directory from the index" )
1389
+ // remove python directory
1390
+ as .NoError (os .RemoveAll (filepath .Join (tempDir , "python" )), "failed to remove python directory" )
1388
1391
1389
1392
// we should traverse and match against fewer files, but no formatting should occur as no formatting signatures
1390
1393
// are impacted
@@ -1411,8 +1414,8 @@ func TestGit(t *testing.T) {
1411
1414
withConfig (configPath , cfg ),
1412
1415
withNoError (t ),
1413
1416
withStats (t , map [stats.Type ]int {
1414
- stats .Traversed : 79 ,
1415
- stats .Matched : 79 ,
1417
+ stats .Traversed : 76 ,
1418
+ stats .Matched : 76 ,
1416
1419
stats .Formatted : 49 , // the echo formatter should only be applied to the new files
1417
1420
stats .Changed : 0 ,
1418
1421
}),
0 commit comments