Skip to content

Commit 32bd59c

Browse files
test
1 parent dca8bd2 commit 32bd59c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/CICD.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, windows-latest]
11+
os: [windows-latest]
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v5
@@ -18,7 +18,8 @@ jobs:
1818
run: |
1919
pip install -r requirements.txt
2020
pip install pytest
21-
pytest
21+
pytest > log.txt
22+
type log.txt
2223
build:
2324
runs-on: ubuntu-latest
2425
needs: test

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.12
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# pip-compile requirements.in
@@ -14,6 +14,8 @@ blinker==1.9.0
1414
# via flask
1515
click==8.2.1
1616
# via flask
17+
colorama==0.4.6
18+
# via click
1719
flask[async]==3.1.1
1820
# via
1921
# -r requirements.in

0 commit comments

Comments
 (0)