@@ -592,17 +592,17 @@ def test_build_tools(self, load_config, build_run):
592
592
[
593
593
mock .call ('asdf' , 'install' , 'python' , python_version ),
594
594
mock .call ('asdf' , 'global' , 'python' , python_version ),
595
- mock .call ('asdf' , 'reshim' , 'python' ),
595
+ mock .call ('asdf' , 'reshim' , 'python' , record = False ),
596
596
mock .call ('python' , '-mpip' , 'install' , '-U' , 'virtualenv' , 'setuptools' ),
597
597
mock .call ('asdf' , 'install' , 'nodejs' , nodejs_version ),
598
598
mock .call ('asdf' , 'global' , 'nodejs' , nodejs_version ),
599
- mock .call ('asdf' , 'reshim' , 'nodejs' ),
599
+ mock .call ('asdf' , 'reshim' , 'nodejs' , record = False ),
600
600
mock .call ('asdf' , 'install' , 'rust' , rust_version ),
601
601
mock .call ('asdf' , 'global' , 'rust' , rust_version ),
602
- mock .call ('asdf' , 'reshim' , 'rust' ),
602
+ mock .call ('asdf' , 'reshim' , 'rust' , record = False ),
603
603
mock .call ('asdf' , 'install' , 'golang' , golang_version ),
604
604
mock .call ('asdf' , 'global' , 'golang' , golang_version ),
605
- mock .call ('asdf' , 'reshim' , 'golang' ),
605
+ mock .call ('asdf' , 'reshim' , 'golang' , record = False ),
606
606
mock .ANY ,
607
607
],
608
608
)
@@ -668,30 +668,34 @@ def test_build_tools_cached(self, load_config, build_run, build_tools_storage, t
668
668
# and on CircleCI
669
669
mock .ANY ,
670
670
f'/home/docs/.asdf/installs/python/{ python_version } ' ,
671
+ record = False ,
671
672
),
672
673
mock .call ('asdf' , 'global' , 'python' , python_version ),
673
- mock .call ('asdf' , 'reshim' , 'python' ),
674
+ mock .call ('asdf' , 'reshim' , 'python' , record = False ),
674
675
mock .call (
675
676
'mv' ,
676
677
mock .ANY ,
677
678
f'/home/docs/.asdf/installs/nodejs/{ nodejs_version } ' ,
679
+ record = False ,
678
680
),
679
681
mock .call ('asdf' , 'global' , 'nodejs' , nodejs_version ),
680
- mock .call ('asdf' , 'reshim' , 'nodejs' ),
682
+ mock .call ('asdf' , 'reshim' , 'nodejs' , record = False ),
681
683
mock .call (
682
684
'mv' ,
683
685
mock .ANY ,
684
686
f'/home/docs/.asdf/installs/rust/{ rust_version } ' ,
687
+ record = False ,
685
688
),
686
689
mock .call ('asdf' , 'global' , 'rust' , rust_version ),
687
- mock .call ('asdf' , 'reshim' , 'rust' ),
690
+ mock .call ('asdf' , 'reshim' , 'rust' , record = False ),
688
691
mock .call (
689
692
'mv' ,
690
693
mock .ANY ,
691
694
f'/home/docs/.asdf/installs/golang/{ golang_version } ' ,
695
+ record = False ,
692
696
),
693
697
mock .call ('asdf' , 'global' , 'golang' , golang_version ),
694
- mock .call ('asdf' , 'reshim' , 'golang' ),
698
+ mock .call ('asdf' , 'reshim' , 'golang' , record = False ),
695
699
mock .ANY ,
696
700
],
697
701
)
0 commit comments