Add actual tree and a test case for zsh #7
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "add_tree"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -305,3 +305,3 @@
db.conn.commit()
TreeBuilder(db).build(self.package)
# TreeBuilder(db).build(self.package)
remove?
I will readd it with a print.
@ -7,3 +51,3 @@
self.db = db
def filtered_revisions(self, project, package):
def revisions_chain(self, project, package):
nit: the old
build
name was more descriptive?What build? The build function is still there.
@ -22,0 +21,4 @@
revisions = TreeBuilder(self.db).build("zsh")
if False:
import sys
drop?
You tell me. I left it in so I know how to regenerate the fixtures yaml.
Instead of using a test case to generate the fixtures, create a funtion. One way here is that, because there is an
__main__
check later, see if there is a parameter insys.argv
named "fixtures" and call it.This or move all the fixture generation code in a different file ...
I'll ponder about it