You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_build_deps.py 181B

1234567
  1. from tests import dds, DDS
  2. def test_build_deps(dds: DDS):
  3. assert not dds.deps_build_dir.is_dir()
  4. dds.build_deps(['-d', 'deps.dds'])
  5. assert dds.deps_build_dir.is_dir()