mirror of
				https://gitea.com/actions/setup-python.git
				synced 2025-10-31 07:47:08 +00:00 
			
		
		
		
	fixing pipenv
This commit is contained in:
		
							
								
								
									
										14
									
								
								.github/workflows/e2e-cache.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								.github/workflows/e2e-cache.yml
									
									
									
									
										vendored
									
									
								
							| @@ -50,10 +50,15 @@ jobs: | |||||||
|       - name: Install pipenv |       - name: Install pipenv | ||||||
|         run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python |         run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python | ||||||
|       - name: Install dependencies |       - name: Install dependencies | ||||||
|  |         shell: pwsh | ||||||
|         run: | |         run: | | ||||||
|           mv ./__tests__/data/Pipfile.lock . |           mv ./__tests__/data/Pipfile.lock . | ||||||
|           mv ./__tests__/data/Pipfile . |           mv ./__tests__/data/Pipfile . | ||||||
|           pipenv install --keep-outdated --python 3 |           if (${{ matrix.python-version }} -Match "pypy") { | ||||||
|  |             pipenv install --keep-outdated --python ${{ matrix.python-version }} | ||||||
|  |           } else { | ||||||
|  |             pipenv install --keep-outdated --python pypy | ||||||
|  |           } | ||||||
|  |  | ||||||
|   python-poetry-dependencies-caching: |   python-poetry-dependencies-caching: | ||||||
|     name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }}) |     name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | ||||||
| @@ -115,7 +120,12 @@ jobs: | |||||||
|       - name: Install pipenv |       - name: Install pipenv | ||||||
|         run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python |         run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python | ||||||
|       - name: Install dependencies |       - name: Install dependencies | ||||||
|  |         shell: pwsh | ||||||
|         run: | |         run: | | ||||||
|           mv ./__tests__/data/Pipfile.lock . |           mv ./__tests__/data/Pipfile.lock . | ||||||
|           mv ./__tests__/data/Pipfile . |           mv ./__tests__/data/Pipfile . | ||||||
|           pipenv install --keep-outdated --python 3 |           if (${{ matrix.python-version }} -Match "pypy") { | ||||||
|  |             pipenv install --keep-outdated --python ${{ matrix.python-version }} | ||||||
|  |           } else { | ||||||
|  |             pipenv install --keep-outdated --python pypy | ||||||
|  |           } | ||||||
		Reference in New Issue
	
	Block a user
	 Dmitry Shibanov
					Dmitry Shibanov