Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

py.test with non-python tests (specifically, with cxxtest)

I work with a team that develops MPI-based C++ numerical applications. The group uses cxxtest for constructing individual unit tests or small suites, but 1) there are some complications aggregating across directories with cxxtest's usual features and 2) there are some integration tests that are simply easier to implement "from the outside" by launching mpirun from a single python thread.

We would like to use py.test as the glue that holds this together, since it advertises itself as being able to run non-python tests (I could be convinced to jump to nose).

Can anyone get me started on the best practice for doing this? Again, since it seems to be one of the advertised features of py.test I'd love to go about it the way that was originally envisioned.

Thanks,

Eli

like image 726
Eli S Avatar asked Nov 06 '22 07:11

Eli S


2 Answers

This guide from Feb 2014 has some worked examples of using pytest to run C tests, perhaps it will help.

like image 193
pfctdayelise Avatar answered Nov 09 '22 04:11

pfctdayelise


Checkout pytest-cpp, it might be exactly what you need.

like image 27
Bruno Oliveira Avatar answered Nov 09 '22 03:11

Bruno Oliveira