Return the path to the Python executable inside the venv.
()
| 202 | |
| 203 | /** Return the path to the Python executable inside the venv. */ |
| 204 | function venvPython() { |
| 205 | return IS_WIN |
| 206 | ? join(VENV_DIR, 'Scripts', 'python.exe') |
| 207 | : join(VENV_DIR, 'bin', 'python'); |
| 208 | } |
| 209 | |
| 210 | /** SHA-256 hash of the requirements-prod.txt file contents. */ |
| 211 | function requirementsHash() { |
no outgoing calls
no test coverage detected