:wave: Another question from an error I’m seeing l...
# development
g
👋 Another question from an error I’m seeing locally - working on https://github.com/pantsbuild/pants/issues/7302 and debugging tests, I’ve run
./pants2 test tests/python/pants_test/build_graph:build_graph
on my branch and ran into what seems to be unrelated to my changes. When I switched to (the latest)
master
, the same issue persists when I run the same test command - this has happened before and a reboot resolved it, working on a Macbook Air (2018) on
10.14.3
with plenty of space available
Copy code
self = <pants.engine.legacy.graph.LegacyBuildGraph object at 0x10e572f10>

                         @contextmanager
                         def _resolve_context(self):
                           try:
                             yield
                           except Exception as e:
                             raise AddressLookupError(
                     >         'Build graph construction failed: {} {}'.format(type(e).__name__, str(e))
                             )
                     E       AddressLookupError: Build graph construction failed: ExecutionError 1 Exception encountered:
                     E       Computing Select(Specs(dependencies<Exactly(tuple)>=(SingleAddress(directory=u'a', name=u'a'),), matcher<Exactly(SpecsMatcher)>=SpecsMatcher(tags<Exactly(tuple)>=(), exclude_patterns<Exactly(tuple)>=())), Exactly(TransitiveHydratedTargets))
                     E         Computing Task(transitive_hydrated_targets, Specs(dependencies<Exactly(tuple)>=(SingleAddress(directory=u'a', name=u'a'),), matcher<Exactly(SpecsMatcher)>=SpecsMatcher(tags<Exactly(tuple)>=(), exclude_patterns<Exactly(tuple)>=())), Exactly(TransitiveHydratedTargets), true)
                     E           Computing Task(addresses_from_address_families, Specs(dependencies<Exactly(tuple)>=(SingleAddress(directory=u'a', name=u'a'),), matcher<Exactly(SpecsMatcher)>=SpecsMatcher(tags<Exactly(tuple)>=(), exclude_patterns<Exactly(tuple)>=())), Exactly(BuildFileAddresses), true)
                     E             Computing Snapshot(PathGlobs(include=(u'a/BUILD', u'a/BUILD.*'), exclude=(), glob_match_error_behavior<Exactly(GlobMatchErrorBehavior)>=GlobMatchErrorBehavior(value=ignore), conjunction<Exactly(GlobExpansionConjunction)>=GlobExpansionConjunction(value=any_match)))
                     E               Computing DigestFile(File { path: "a/BUILD", is_executable: false })
                     E                 Throw(Error making env for store at "/private/var/folders/fv/9ly0y0dj1g946plb36nm4s1m0000gn/T/tmp24_0if/files/7": No space left on device)
                     E                   Traceback (no traceback):
                     E                     <pants native internals>
                     E                   Exception: Error making env for store at "/private/var/folders/fv/9ly0y0dj1g946plb36nm4s1m0000gn/T/tmp24_0if/files/7": No space left on device

                     .pants.d/pyprep/sources/e15daefeaae9c0ce65e78750d7c0f1a6079a5ee8/pants/engine/legacy/graph.py:238: AddressLookupError
                     = 5 failed, 14 passed, 3 skipped in 2.33 seconds =