File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -131,6 +131,14 @@ jobs:
131131 which python
132132 python --version
133133 make fast-test
134+ - run :
135+ name : Exercise the benchmarks
136+ command : |
137+ . ./venv/Scripts/activate
138+ $env:USERPROFILE = "C:\Users\circleci"
139+ $env:HOMEDRIVE = "C:"
140+ $env:HOMEPATH = "\Users\circleci"
141+ make benchmark-ci
134142 - store_test_results :
135143 path : test-results
136144
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
3+ import os
4+ # Set Windows home directory environment variables if not set
5+ if os .name == 'nt' and not os .environ .get ('USERPROFILE' ):
6+ os .environ ['USERPROFILE' ] = r'C:\Users\circleci'
7+ os .environ ['HOMEDRIVE' ] = 'C:'
8+ os .environ ['HOMEPATH' ] = r'\Users\circleci'
9+
310import asyncio
411import pyperf
5- import os
612import logging
713from pathlib import Path
814from lsprotocol import types
You can’t perform that action at this time.
0 commit comments