-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix dbt deps issues (#778 #994 #895) #1110
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
7757c85
add some helpful exceptions about command running
59b6f78
Raise an exception on rc!=0 in run_cmd, raise more specific exception…
ec46606
Tests, fixup ci
e866caa
add support for cross-drive moves
531d7c6
use environment variables or per-run temp directories to assign the t…
412b165
fix issue where we incorrectly logged stack traces
3773843
in deps, when "git" is not in the path, link users to help docs
3515422
Merge branch 'dev/grace-kelly' into fix/dbt-deps-issues
d35e549
Handle cross-drive windows permissions issues by undoing git's readon…
8840996
user feedback: log download directory in dbt deps
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
FROM python:3.6 | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get install -y python-pip netcat | ||
RUN apt-get install -y python-dev python3-dev | ||
# do these on one line so changes trigger apt-get update | ||
RUN apt-get update && \ | ||
apt-get install -y python-pip netcat python-dev python3-dev postgresql | ||
|
||
RUN pip install pip --upgrade | ||
RUN pip install virtualenv | ||
RUN pip install virtualenvwrapper | ||
RUN pip install tox | ||
|
||
RUN useradd -mU dbt_test_user | ||
USER dbt_test_user | ||
|
||
WORKDIR /usr/src/app | ||
RUN cd /usr/src/app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this built by
Dockerfile
in this repo?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. I use this gross and lame shell script to do it: