mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/setup-python
				synced 2025-10-31 13:41:06 +08:00 
			
		
		
		
	Fix tests for update-environment==false
This commit is contained in:
		
							parent
							
								
									78a2330b92
								
							
						
					
					
						commit
						412091c1e0
					
				| @ -151,8 +151,11 @@ describe('findPyPyVersion', () => { | |||||||
|   let spyChmodSync: jest.SpyInstance; |   let spyChmodSync: jest.SpyInstance; | ||||||
|   let spyCoreAddPath: jest.SpyInstance; |   let spyCoreAddPath: jest.SpyInstance; | ||||||
|   let spyCoreExportVariable: jest.SpyInstance; |   let spyCoreExportVariable: jest.SpyInstance; | ||||||
|  |   const env = process.env; | ||||||
| 
 | 
 | ||||||
|   beforeEach(() => { |   beforeEach(() => { | ||||||
|  |     jest.resetModules(); | ||||||
|  |     process.env = {...env}; | ||||||
|     tcFind = jest.spyOn(tc, 'find'); |     tcFind = jest.spyOn(tc, 'find'); | ||||||
|     tcFind.mockImplementation((tool: string, version: string) => { |     tcFind.mockImplementation((tool: string, version: string) => { | ||||||
|       const semverRange = new semver.Range(version); |       const semverRange = new semver.Range(version); | ||||||
| @ -214,6 +217,7 @@ describe('findPyPyVersion', () => { | |||||||
|     jest.resetAllMocks(); |     jest.resetAllMocks(); | ||||||
|     jest.clearAllMocks(); |     jest.clearAllMocks(); | ||||||
|     jest.restoreAllMocks(); |     jest.restoreAllMocks(); | ||||||
|  |     process.env = env; | ||||||
|   }); |   }); | ||||||
| 
 | 
 | ||||||
|   it('found PyPy in toolcache', async () => { |   it('found PyPy in toolcache', async () => { | ||||||
|  | |||||||
| @ -28,10 +28,12 @@ const manifestData = require('./data/versions-manifest.json'); | |||||||
| describe('Finder tests', () => { | describe('Finder tests', () => { | ||||||
|   let spyCoreAddPath: jest.SpyInstance; |   let spyCoreAddPath: jest.SpyInstance; | ||||||
|   let spyCoreExportVariable: jest.SpyInstance; |   let spyCoreExportVariable: jest.SpyInstance; | ||||||
|  |   const env = process.env; | ||||||
| 
 | 
 | ||||||
|   beforeEach(() => { |   beforeEach(() => { | ||||||
|  |     jest.resetModules(); | ||||||
|  |     process.env = {...env}; | ||||||
|     spyCoreAddPath = jest.spyOn(core, 'addPath'); |     spyCoreAddPath = jest.spyOn(core, 'addPath'); | ||||||
| 
 |  | ||||||
|     spyCoreExportVariable = jest.spyOn(core, 'exportVariable'); |     spyCoreExportVariable = jest.spyOn(core, 'exportVariable'); | ||||||
|   }); |   }); | ||||||
| 
 | 
 | ||||||
| @ -39,6 +41,7 @@ describe('Finder tests', () => { | |||||||
|     jest.resetAllMocks(); |     jest.resetAllMocks(); | ||||||
|     jest.clearAllMocks(); |     jest.clearAllMocks(); | ||||||
|     jest.restoreAllMocks(); |     jest.restoreAllMocks(); | ||||||
|  |     process.env = env; | ||||||
|   }); |   }); | ||||||
| 
 | 
 | ||||||
|   it('Finds Python if it is installed', async () => { |   it('Finds Python if it is installed', async () => { | ||||||
| @ -66,7 +69,6 @@ describe('Finder tests', () => { | |||||||
|     await finder.useCpythonVersion('3.x', 'x64', false); |     await finder.useCpythonVersion('3.x', 'x64', false); | ||||||
|     expect(spyCoreAddPath).not.toHaveBeenCalled(); |     expect(spyCoreAddPath).not.toHaveBeenCalled(); | ||||||
|     expect(spyCoreExportVariable).not.toHaveBeenCalled(); |     expect(spyCoreExportVariable).not.toHaveBeenCalled(); | ||||||
|     expect(spyCoreExportVariable).not.toHaveBeenCalled(); |  | ||||||
|   }); |   }); | ||||||
| 
 | 
 | ||||||
|   it('Finds stable Python version if it is not installed, but exists in the manifest', async () => { |   it('Finds stable Python version if it is not installed, but exists in the manifest', async () => { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 mayeut
						mayeut