Test: ignore .log files
This commit is contained in:
parent
da13309ed3
commit
96551feaae
2 changed files with 4 additions and 1 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.log
|
|
@ -7,7 +7,9 @@ import tempfile
|
|||
from pathlib import Path
|
||||
|
||||
parser = argparse.ArgumentParser(description="Process some integers.")
|
||||
parser.add_argument("src", default="src", type=Path, help="src directory", nargs="?")
|
||||
parser.add_argument(
|
||||
"src", default="src", type=Path, help="src directory", nargs="?"
|
||||
)
|
||||
parser.add_argument(
|
||||
"tests", default="tests", type=Path, help="tests directory", nargs="?"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue