Skip to content
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

Feature/improved graph selection #279

Merged
merged 31 commits into from
Feb 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5300837
run tests within included packages
drewbanin Feb 5, 2017
a0869df
select nodes with CLI syntax (wip)
drewbanin Feb 7, 2017
ac0dd0d
attach tests to models, select tests from graph
drewbanin Feb 7, 2017
5838f1f
Merge branch 'feature/run-tests-on-packages' into feature/improved-gr…
drewbanin Feb 7, 2017
2fc30d7
Merge branch 'development' into feature/improved-graph-selection
drewbanin Feb 7, 2017
48ce48e
Merge branch 'development' into feature/improved-graph-selection
drewbanin Feb 7, 2017
c82040a
Merge branch 'development' into feature/improved-graph-selection
drewbanin Feb 11, 2017
22c27ae
code cleanup, attach tests to models
drewbanin Feb 11, 2017
99742a4
fix/adapt unit tests
drewbanin Feb 11, 2017
a67d0b4
fix archive task
drewbanin Feb 12, 2017
0e37ac4
rip out lots of create_template code, refactor, tests
drewbanin Feb 12, 2017
4cd1978
refactor, fix tests
drewbanin Feb 12, 2017
cea8fe6
replace makefile
drewbanin Feb 12, 2017
d24d441
fix unit tests
drewbanin Feb 12, 2017
1fb9c1c
fix snowflake reference test
drewbanin Feb 13, 2017
46feb97
more snowflake testing
drewbanin Feb 13, 2017
4613e41
graph selection unit tests, fix other tests
drewbanin Feb 13, 2017
2ed632d
show warnings for invalid schema tests!
drewbanin Feb 14, 2017
c442167
select package.model_name with --models
drewbanin Feb 14, 2017
f6c08da
unit tests for graph selection mechanism
drewbanin Feb 14, 2017
be52069
test schema test model selection
drewbanin Feb 14, 2017
9a2304c
remove TODO
drewbanin Feb 15, 2017
bffd8bf
s/GraphFile/graph_file_name/g
drewbanin Feb 15, 2017
47e728a
use + instead of <>, remove "this" pkg shortcut
drewbanin Feb 16, 2017
0a8d678
s/></+/g
drewbanin Feb 16, 2017
b573a71
fix analyses
drewbanin Feb 16, 2017
36c157f
fix analysis tests
drewbanin Feb 16, 2017
92b1c0e
fix windows tests
drewbanin Feb 16, 2017
cfa1220
remove test that was breaking on windows
drewbanin Feb 17, 2017
5db15c7
split --models spec as spaces
drewbanin Feb 17, 2017
3b0103c
fix integration test
drewbanin Feb 17, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ changed_tests := `git status --porcelain | grep '^\(M\| M\|A\| A\)' | awk '{ pri
install:
pip install .

it:
@echo "Unit test run starting..."
@time docker-compose run test tox -e unit-py27,pep8

test:
@echo "Full test run starting..."
@time docker-compose run test tox
Expand Down
5 changes: 0 additions & 5 deletions dbt/archival.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,3 @@ def compile(self):
rendered = template.render(ctx)

return rendered

def runtime_compile(self, compiled_model):
context = self.context.copy()
context.update(model.context())
model.compile(context)
Loading