Skip to content

Commit

Permalink
fix qt5 unit tests for python 3.5 #31
Browse files Browse the repository at this point in the history
  • Loading branch information
pustotnik committed Jan 28, 2022
1 parent 6d55f34 commit a79c8e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_features_qt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,16 @@ def qt5tgen(tmpdir):
srcroot = rootdir.mkdir("src")
bldroot = rootdir.mkdir("build")
bldout = bldroot.mkdir("debug")

srcroot = str(srcroot)
bldout = str(bldout)

ctx = Context.Context(run_dir = str(rootdir))
ctx.buildWorkDirName = buildWorkDirName
ctx.is_install = 0

makeNode = ctx.root.make_node
ctx.srcnode = makeNode(str(srcroot))
ctx.srcnode = makeNode(srcroot)
ctx.bldnode = makeNode(joinpath(bldout, buildWorkDirName))
ctx.bldnode.mkdir()

Expand Down

0 comments on commit a79c8e0

Please sign in to comment.