Skip to content

Commit

Permalink
ignoring env specific if statements from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Dec 15, 2022
1 parent b07014c commit 92b9973
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions stl/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import argparse
import pprint
import random
import sys

Expand Down Expand Up @@ -46,7 +45,7 @@ def _get_name(args):
continue
elif name.startswith('<'):
continue
elif r'\AppData\Local\Temp' in name:
elif r'\AppData\Local\Temp' in name: # pragma: no cover
# Windows temp file
continue
else:
Expand Down

0 comments on commit 92b9973

Please sign in to comment.