Skip to content
Snippets Groups Projects

Resolve "Bug when writing a measurement file with no GW file input"

1 file
+ 14
0
Compare changes
  • Side-by-side
  • Inline
tests/__init__.py 0 → 100644
+ 14
0
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
"""Test setup functions."""
import os
def teardown_module(_):
"""Remove test measurement file after all tests are executed."""
try:
os.remove('measurements.h5')
except FileNotFoundError:
pass
Loading