mirror of
https://github.com/django/django.git
synced 2025-07-19 03:05:32 +00:00
Replaced manual current directory management with subprocess's cwd argument.
This commit is contained in:
parent
4d425abc84
commit
099c36d546
2 changed files with 3 additions and 11 deletions
|
@ -7,13 +7,11 @@ from . import PostgreSQLSimpleTestCase
|
|||
|
||||
class PostgresIntegrationTests(PostgreSQLSimpleTestCase):
|
||||
def test_check(self):
|
||||
old_cwd = os.getcwd()
|
||||
self.addCleanup(lambda: os.chdir(old_cwd))
|
||||
os.chdir(os.path.dirname(__file__))
|
||||
result = subprocess.run(
|
||||
[sys.executable, '-m', 'django', 'check', '--settings', 'integration_settings'],
|
||||
stdout=subprocess.DEVNULL,
|
||||
stderr=subprocess.PIPE,
|
||||
cwd=os.path.dirname(__file__),
|
||||
)
|
||||
stderr = '\n'.join([e.decode() for e in result.stderr.splitlines()])
|
||||
self.assertEqual(result.returncode, 0, msg=stderr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue