Remove unneeded shebangs from test files

The files are not executable, tests should only be run via `pytest`, and
some of them were incorrectly python2.
This commit is contained in:
Andrew Marshall 2023-04-14 10:01:29 -04:00
parent d16709a418
commit 857bcd5c4f
6 changed files with 0 additions and 12 deletions

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python3
pytest_plugins = [
"direnv_project",
"root",

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python3
import shutil
import textwrap
from dataclasses import dataclass

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python3
import subprocess
from pathlib import Path
from typing import IO, Any, List, Optional, Union

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from pathlib import Path
import pytest

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python2
import subprocess
import sys
import unittest

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python2
import os
import subprocess
import sys