FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
agent-framework/.github/workflows/python-tests.yml at main · microsoft/agent-framework · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
microsoft
/
agent-framework
Public
Notifications
You must be signed in to change notification settings
Fork
2.2k
Star
13.2k
Code
Issues
501
Pull requests
144
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
agent-framework
/
.github
/
workflows
/
python-tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
59 lines (56 loc) · 1.78 KB
Breadcrumbs
agent-framework
/
.github
/
workflows
/
python-tests.yml
Copy path
File metadata and controls
59 lines (56 loc) · 1.78 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name
:
Python - Tests
on
:
pull_request
:
branches
:
["main", "feature*"]
paths
:
-
"
python/**
"
-
"
!python/AGENTS.md
"
-
"
!python/**/AGENTS.md
"
-
"
!python/.github/skills/*
"
-
"
!python/.github/skills/**
"
env
:
#
Configure a constant location for the uv cache
UV_CACHE_DIR
:
/tmp/.uv-cache
jobs
:
python-tests
:
name
:
Python Tests
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
true
matrix
:
python-version
:
["3.10", "3.11", "3.12", "3.13", "3.14"]
#
todo: add macos-latest when problems are resolved
os
:
[ubuntu-latest, windows-latest]
env
:
UV_PYTHON
:
${{ matrix.python-version }}
permissions
:
contents
:
write
defaults
:
run
:
working-directory
:
python
steps
:
-
uses
:
actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
#
v7.0.1
-
name
:
Set up python and install the project
id
:
python-setup
uses
:
./.github/actions/python-setup
with
:
python-version
:
${{ matrix.python-version }}
os
:
${{ runner.os }}
exclude-packages
:
${{ matrix.python-version == '3.10' && 'agent-framework-github-copilot agent-framework-azure-cosmos-memory' || '' }}
env
:
#
Configure a constant location for the uv cache
UV_CACHE_DIR
:
/tmp/.uv-cache
#
Unit tests
-
name
:
Run all tests
run
:
uv run poe test -A --junitxml=pytest.xml
working-directory
:
./python
#
Surface failing tests
-
name
:
Surface failing tests
if
:
always()
uses
:
pmeier/pytest-results-action@20b595761ba9bf89e115e875f8bc863f913bc8ad
#
v0.7.2
with
:
path
:
./python/pytest.xml
summary
:
true
display-options
:
fEX
fail-on-empty
:
false
title
:
Test results
Back
|
FazBrowse Home
|
New Git URL