Currently there is no way to have the scss sources (node-bootstrap) with phpunit that requires the old bootstrap 3.
Explained:
- phpunit pulls php-codecoverage that pulls libjs-bootstrap4
- https://packages.debian.org/sid/all/libjs-bootstrap4/filelist installs files in /usr/share/sass/bootstrap/
- https://packages.debian.org/sid/all/node-bootstrap/filelist installs files in /usr/share/sass/bootstrap/
- They exclude itself some installing, so far so good.
I currently can have libjs-bootstrap5 for the the js and css files, but I need the scss files too.
But given this impossible configuration I have to keep the contents of your node-bootstrap /usr/share/sass/bootstrap/ in my debian/missing-sources/
In order to have the phpunit that I need to run tests on my package and have the sources I need to build the package.
The package is: phpmyadmin
I am not sure how this can be improved, but I would like to have the scss files without breaking everything :)