Skip to content

Commit

Permalink
Deal with ~ in path
Browse files Browse the repository at this point in the history
  • Loading branch information
abagshaw committed Feb 26, 2018
1 parent bfb363e commit 9e0a83b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ jobs:
- ./bin #Cache .weight files
key: v1-dependencies-{{ checksum "test/requirements-testing.txt" }}

- run:
name: debug
command: |
echo $PWD
ls
# run tests!
- run:
name: run tests
Expand Down
2 changes: 1 addition & 1 deletion test/test_darkflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# locally if you don't want this happening!)

#Settings
buildPath = os.environ.get("CIRCLE_WORKING_DIRECTORY")
buildPath = os.path.expanduser(os.environ.get("CIRCLE_WORKING_DIRECTORY"))

if buildPath is None:
print()
Expand Down

0 comments on commit 9e0a83b

Please sign in to comment.