conftest.py 262 B

12345678
  1. import os
  2. # Getting the absolute path of the current file's directory
  3. ABS_PATH = os.path.dirname(os.path.abspath(__file__))
  4. # Getting the absolute path of the project's root directory
  5. PROJECT_DIR = os.path.abspath(os.path.join(ABS_PATH, os.pardir, os.pardir))