Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
[AIRFLOW-6400] Fix pytest not working on Windows (apache#6964)
Browse files Browse the repository at this point in the history
  • Loading branch information
baolsen authored and galuszkak committed Mar 5, 2020
1 parent 382e67d commit 25c9b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def breeze_test_helper(request):
print(" AIRFLOW ".center(60, "="))

# Setup test environment for breeze
home = os.environ.get("HOME")
home = os.path.expanduser("~")
airflow_home = os.environ.get("AIRFLOW_HOME") or os.path.join(home, "airflow")
tests_directory = os.path.dirname(os.path.realpath(__file__))

Expand Down

0 comments on commit 25c9b58

Please sign in to comment.