diff options
author | DWesl <22566757+DWesl@users.noreply.github.com> | 2022-06-11 10:18:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 10:18:57 -0400 |
commit | 863c67882ce6fd25f6c8d3681ccf6331418806d3 (patch) | |
tree | 958f39dbbf883162b14370c43b186c2e035c1183 | |
parent | 21113a81560dfea6f2eea5f50ceb5e87e9097c82 (diff) | |
download | gitpython-863c67882ce6fd25f6c8d3681ccf6331418806d3.tar.gz |
CI: Set temporary directory for tests.
Hopefully this avoids the mismatched directories with saving into a user temporary directory with one user name and reading from a user temporary directory with a different user name.
-rw-r--r-- | .github/workflows/cygwin-test.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/cygwin-test.yml b/.github/workflows/cygwin-test.yml index ee5867fc..c3078153 100644 --- a/.github/workflows/cygwin-test.yml +++ b/.github/workflows/cygwin-test.yml @@ -14,6 +14,8 @@ jobs: env: CHERE_INVOKING: 1 SHELLOPTS: igncr + TMP: "/tmp" + TEMP: "/tmp" steps: - name: Force LF line endings |