Skip to content

Commit

Permalink
Start VirtualCodebase integration #101
Browse files Browse the repository at this point in the history
Signed-off-by: John M. Horan <[email protected]>
  • Loading branch information
johnmhoran committed Apr 20, 2018
1 parent 436fadd commit 3272990
Show file tree
Hide file tree
Showing 6 changed files with 4,057 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/deltacode/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
import simplejson

from deltacode import DeltaCode
# Test the VirtualCodebase
from deltacode.virtualcodebase import DeltaCode_VC
from deltacode import __version__
from deltacode.utils import deltas, get_notice, collect_errors

Expand Down Expand Up @@ -86,7 +88,9 @@ def cli(new, old, json_file, all_delta_types):
])

# do the delta
deltacode = DeltaCode(new, old, options)
# deltacode = DeltaCode(new, old, options)
# Test the VirtualCodebase:
deltacode = DeltaCode_VC(new, old, options)

# generate JSON output
write_json(deltacode, json_file, all_delta_types)
Loading

0 comments on commit 3272990

Please sign in to comment.