Re: Running 2to3 against test suite before testing with pybuild

2013-11-06 Thread Piotr Ożarowski
[Andrii Senkovych, 2013-11-06] > pybuild --verbose --test-pytest --test-args="-v" --before-test "cp -R > {dir}/tests {build_dir}" > > This command works for py2.7 (obviously) but in order for this to work > for 3.x I have to run 2to3 against test suite itself. How can I do > that? > > Also how c

Running 2to3 against test suite before testing with pybuild

2013-11-06 Thread Andrii Senkovych
Hello, Recently I have migrated sqlparse library I maintain to pybuild. Everything went fine except that I couldn't set up running unit tests. In order to run tests I have used this command: pybuild --verbose --test-pytest --test-args="-v" --before-test "cp -R {dir}/tests {build_dir}" This com