From 58caafd7f186ef5717cd277e616ffeee60ac6d8d Mon Sep 17 00:00:00 2001 From: Anupam Maurya Date: Sun, 12 Nov 2023 11:09:48 +0530 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 128758a..5a06d78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,4 +25,7 @@ jobs: - name: Run tests run: | - pytest test_tanji.py + pytest test/test_tanji.py + env: + PYTHONDONTWRITEBYTECODE: 1 # Avoid __pycache__ creation + PYTHONPATH: "${{ runner.workspace }}"