File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,24 +105,29 @@ jobs:
105105 size : large
106106 steps :
107107 - halt_unless_core
108+ - run :
109+ name : Enable symlinks in git config
110+ command : git config --global core.symlinks true
108111 - checkout
109112 - run :
110- name : Install Python 3.9
113+ name : Install System Dependencies
111114 command : |
112- choco install python --version=3.9 -y
115+ choco install make which -y
113116 refreshenv
114- - run :
115- name : Install make
116- command : choco install make -y
117117 - run :
118118 name : Install SQLMesh dev dependencies
119- command : make install-dev
120- - run :
121- name : Fix Git URL override
122- command : git config --global --unset url."ssh://git@github.com".insteadOf
119+ command : |
120+ python -m venv venv
121+ . ./venv/Scripts/activate
122+ python.exe -m pip install --upgrade pip
123+ make install-dev
123124 - run :
124125 name : Run fast unit tests
125- command : make fast-test
126+ command : |
127+ . ./venv/Scripts/activate
128+ which python
129+ python --version
130+ make fast-test
126131 - store_test_results :
127132 path : test-results
128133
You can’t perform that action at this time.
0 commit comments