File tree 3 files changed +26
-25
lines changed
3 files changed +26
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : test
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+
7
+ test :
8
+ runs-on : ${{ matrix.os }}
9
+ name : ${{ matrix.os }} - py${{ matrix.python-version }}
10
+ strategy :
11
+ matrix :
12
+ os : [windows-latest]
13
+ python-version : [3.6, 3.7, 3.8]
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Set up Python ${{ matrix.python-version }}
17
+ uses : actions/setup-python@v2
18
+ with :
19
+ python-version : ${{ matrix.python-version }}
20
+ - name : Install
21
+ run : |
22
+ pip install --upgrade pip setuptools
23
+ pip install -e .
24
+ - name : Run Tests
25
+ run : |
26
+ python runtests.py
Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ The Python Benchmark Suite
10
10
:alt: Build status of pyperformance on Travis CI
11
11
:target: https://travis-ci.org/python/pyperformance
12
12
13
- .. image :: https://ci.appveyor.com/api/projects/status/6sd9k88cwit27tgl/branch/master?svg=true
14
- :alt: Build status of pyperformance on AppVeyor
15
- :target: https://ci.appveyor.com/project/lazka/pyperformance-rdqv8
16
-
17
13
The ``pyperformance `` project is intended to be an authoritative source of
18
14
benchmarks for all Python implementations. The focus is on real-world
19
15
benchmarks, rather than synthetic benchmarks, using whole applications when
You can’t perform that action at this time.
0 commit comments