File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Performance tests - demo
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ test :
9+ runs-on : gcp-perf-test-dedicated
10+ container :
11+ image : ubuntu:24.04
12+ options : --cpuset-cpus=0
13+ timeout-minutes : 30
14+ steps :
15+ - name : Install Git
16+ run : |
17+ apt-get update && apt-get install -y git &&
18+ git config --global --add safe.directory /__w/neptune-query/neptune-query
19+
20+ - name : Checkout repository
21+ uses : actions/checkout@v4
22+
23+ - name : Install Python
24+ uses : actions/setup-python@v5
25+ with :
26+ python-version : " 3.13"
27+
28+ - name : Install dependencies
29+ run : |
30+ python -m pip install --upgrade pip &&
31+ pip install -r dev_requirements.txt
32+
33+ - name : Run performance tests
34+ run : |
35+ pytest --junitxml="test-results/test-performance.xml" tests/performance
You can’t perform that action at this time.
0 commit comments