X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=blobdiff_plain;f=project_template%2F.github%2Fworkflows%2Ftest-publish.yaml;h=5c4ae126d6be9999d4e171b960a03acd5ea37947;hp=b4c337a45913dba3d336897beb589234ad26355f;hb=HEAD;hpb=37c943839dd54b4f0ab6acb2c25f14247292e1b4 diff --git a/project_template/.github/workflows/test-publish.yaml b/project_template/.github/workflows/test-publish.yaml index b4c337a..5c4ae12 100644 --- a/project_template/.github/workflows/test-publish.yaml +++ b/project_template/.github/workflows/test-publish.yaml @@ -55,14 +55,21 @@ jobs: - name: Set TOXENV run: | import os, sys + ld_library_path = None if hasattr(sys, 'pypy_version_info'): toxenv = 'pypy3' else: pyver = '%d%d' % tuple(sys.version_info[:2]) + if os.name == 'posix': + if pyver == '27': # Python 2.7 on Linux requires `$LD_LIBRARY_PATH` + ld_library_path = os.path.join( + os.path.dirname(os.path.dirname(sys.executable)), 'lib') toxenv = 'py%s' % pyver if os.name == 'posix': toxenv += ',py%s-flake8' % pyver with open(os.environ['GITHUB_ENV'], 'a') as f: + if ld_library_path: + f.write('LD_LIBRARY_PATH=' + ld_library_path + '\n') f.write('TOXENV=' + toxenv + '\n') print(toxenv) shell: python