]> git.phdru.name Git - cookiecutter.git/blobdiff - project_template/.github/workflows/test-publish.yaml
Fix(mk-project): `sed` requires `s` for substitute
[cookiecutter.git] / project_template / .github / workflows / test-publish.yaml
index a66ab6e2cd4dc016d94dddc1359df20b576c4c89..5c4ae126d6be9999d4e171b960a03acd5ea37947 100644 (file)
@@ -7,11 +7,13 @@ on: [push, pull_request]
 
 jobs:
   run-tests:
+    env:
+      not_in_conda: "['3.11', 'pypy-3.7']"
 
     strategy:
       matrix:
         os: [ubuntu-latest, macos-11, windows-latest]
-        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-2.7", "pypy-3.7"]
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"]
         include:
         - os: ubuntu-latest
           os-name: Linux
@@ -29,9 +31,14 @@ jobs:
     steps:
 
       # Setup Python/pip
+      - uses: s-weigand/setup-conda@v1
+        with:
+          python-version: ${{ matrix.python-version }}
+        if: ${{ runner.os == 'Linux' && !contains(fromJSON(env.not_in_conda), matrix.python-version) }}
       - uses: actions/setup-python@v4
         with:
           python-version: ${{ matrix.python-version }}
+        if: ${{ runner.os != 'Linux' || contains(fromJSON(env.not_in_conda), matrix.python-version) }}
       - name: Cache pip
         uses: actions/cache@v3
         with:
@@ -48,14 +55,21 @@ jobs:
       - name: Set TOXENV
         run: |
           import os, sys
+          ld_library_path = None
           if hasattr(sys, 'pypy_version_info'):
-            toxenv = 'pypy'
+            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