Monorepo management for opam overlays
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

monopam/test: filter out network failures from init.t

The cram test for monopam init invokes the verse registry clone, which
hits the network. When the registry server returns 502 (or the sandbox
has no network), the warning lines pollute the captured output. Filter
them out so the assertion focuses on init's stable observable behaviour
— the orthogonal-to-clone verse line was already filtered the same way.

+6 -1
+6 -1
test/cram/init.t/run.t
··· 32 32 > | sed '/root:/ s|: .*/workspace|: <WS>|' \ 33 33 > | sed '/✓/ s/ (.*$//' \ 34 34 > | grep -v '^\[init\] verse: ' \ 35 - > | grep -v '^Updated dune-project' 35 + > | grep -v '^Updated dune-project' \ 36 + > | grep -v 'Registry clone failed' \ 37 + > | grep -v 'Cloning into' \ 38 + > | grep -v 'fatal: unable to access' \ 39 + > | grep -v '^stdout:' \ 40 + > | grep -v '^stderr:' 36 41 [init] root: <WS> 37 42 [init] handle: alice.example.org 38 43 Regenerated root files: dune-project, README.md, llms.txt