@@ -7,13 +7,13 @@ main = do
77 -- keep old behavior
88 stack [" sdist" ]
99 -- successful sdist with --test-tarball
10- stack [" sdist" , " packageb " , " --test-tarball" ]
10+ stack [" sdist" , " package-with-working-th " , " --test-tarball" ]
1111 -- fails because package contains TH which depends on files which are not put into sdist tarball
12- stackErr [" sdist" , " packagea " , " --test-tarball" ]
12+ stackErr [" sdist" , " package-with-th " , " --test-tarball" ]
1313 -- same, but inside a subdir
14- stackErr [" sdist" , " packagecd/packagec " , " --test-tarball" ]
14+ stackErr [" sdist" , " subdirs/failing-in-subdir " , " --test-tarball" ]
1515 -- depends on packagea and packagec - these would fail if they were the target of sdist,
1616 -- but since they are just dependencies, the operation should succeed
17- stack [" sdist" , " packagecd/packaged " , " --test-tarball" ]
17+ stack [" sdist" , " subdirs/dependent-on-failing-packages " , " --test-tarball" ]
1818 -- fails because a test depends on files which are not put into sdist tarball
19- stackErr [" sdist" , " packagee " , " --test-tarball" ]
19+ stackErr [" sdist" , " package-with-failing-test " , " --test-tarball" ]
0 commit comments