I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.
python3 -sBm build -w --no-isolation
- because I'm calling
build with --no-isolation I'm using during all processes only locally installed modules
- install .whl file in </install/prefix>
- run pytest with PYTHONPATH pointing to sitearch and sitelib inside </install/prefix>
I cannot find what provides data_filename and canonical_filename fixtures and I'm aasuming that I still have some modules missing in my build env.
May I ask for some hints about what I need to install?
I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.
python3 -sBm build -w --no-isolationbuildwith--no-isolationI'm using during all processes only locally installed modulesI cannot find what provides
data_filenameandcanonical_filenamefixtures and I'm aasuming that I still have some modules missing in my build env.May I ask for some hints about what I need to install?