Skip to content

Commit

Permalink
Do not merge temporary test
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jun 4, 2024
1 parent 9be5765 commit 503c735
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/test_temp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import os
import subprocess
import sys


def test_dirs_temporary_ci_thing():
print("\n" * 5)
subprocess.call(
[
sys.executable,
"-c",
r'import porcupine; print("cache", porcupine.dirs.user_cache_dir); print("config", porcupine.dirs.user_config_dir); print("log", porcupine.dirs.user_log_dir)',
]
)
print()
for k, v in os.environ.items():
print(k, "=", v)
print("\n" * 5)

0 comments on commit 503c735

Please sign in to comment.