diff options
| -rw-r--r-- | .coveragerc | 2 | ||||
| -rw-r--r-- | cli.py | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..92e7573 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,2 @@ +[run] +source = gdpr_obfuscator @@ -1,6 +1,9 @@ import argparse from gdpr_obfuscator import Obfuscator +# This is a simple CLI for demonstration and doesn't undergo the same level +# of testing as the core library. + def main(): parser = argparse.ArgumentParser( |
