getsolus / ypkg

Modern, declarative, structured build format
https://getsol.us
GNU General Public License v3.0
22 stars 11 forks source link

python_test macros: also support parameters starting with a dash #3

Closed kyrios123 closed 6 years ago

kyrios123 commented 6 years ago

This allows calling python with options for example

    %python_test -m tornado.test.runtests --verbose
    %python3_test -m tornado.test.runtests --verbose

Will result in (but also going in the correct location and setting PYTHONPATH)

    python2 -m tornado.test.runtests --verbose
    python3 -m tornado.test.runtests --verbose

Signed-off-by: Pierre-Yves pyu@riseup.net