Merge pull request #369 from Czaki/ensure_dir_name

Ensure dir name
This commit is contained in:
Joe Rickerby
2020-06-16 15:07:58 +01:00
committed by GitHub
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ def test(capfd, tmp_path):
project_dir = tmp_path / 'project'
subdir_package_project.generate(project_dir)
package_dir = os.path.join(project_dir, 'src', 'spam')
package_dir = os.path.join('src', 'spam')
# build the wheels
actual_wheels = utils.cibuildwheel_run(project_dir, package_dir=package_dir, add_env={
'CIBW_BEFORE_BUILD': 'python {project}/bin/before_build.py',