diff options
author | alevitskii <[email protected]> | 2025-09-02 06:57:05 +0300 |
---|---|---|
committer | alevitskii <[email protected]> | 2025-09-02 07:19:27 +0300 |
commit | 7e399723cf6d967e20c8f9d2ee975426636242c5 (patch) | |
tree | abd5283daba11c07afc8fc16f02aec2c19e2272a /contrib/python/portalocker/py3/tests/test_combined.py | |
parent | 14e9c865541d5abe545cb496c0143e4905b00c78 (diff) |
Drop LINTER param from styling macroses and cleanup deps
Drop LINTER param from styling macroses
commit_hash:00dd2e2ee103e509cff38f520d4779974abe39a7
Diffstat (limited to 'contrib/python/portalocker/py3/tests/test_combined.py')
-rw-r--r-- | contrib/python/portalocker/py3/tests/test_combined.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/contrib/python/portalocker/py3/tests/test_combined.py b/contrib/python/portalocker/py3/tests/test_combined.py deleted file mode 100644 index 594de74b9ba..00000000000 --- a/contrib/python/portalocker/py3/tests/test_combined.py +++ /dev/null @@ -1,15 +0,0 @@ -import sys - - -def test_combined(tmpdir): - from distutils import dist - import setup - - output_file = tmpdir.join('combined.py') - combine = setup.Combine(dist.Distribution()) - combine.output_file = str(output_file) - combine.run() - sys.path.append(output_file.dirname) - import combined - assert combined - |