Skip to content

Commit 0407260

Browse files
authored
fix tests (#562)
* fix tests * bump pyproject
1 parent 47beecf commit 0407260

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentops"
7-
version = "0.3.19"
7+
version = "0.3.20"
88
authors = [
99
{ name="Alex Reibman", email="areibman@gmail.com" },
1010
{ name="Shawn Qiu", email="siyangqiu@gmail.com" },

tests/test_host_env.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,13 @@ def mock_partitions():
1111
device="/dev/sda1",
1212
mountpoint="/",
1313
fstype="ext4",
14-
opts="rw,relatime",
15-
maxfile=0,
16-
maxpath=0,
14+
opts="rw,relatime"
1715
),
1816
sdiskpart(
1917
device="z:\\",
2018
mountpoint="z:\\",
2119
fstype="ntfs",
22-
opts="rw,relatime",
23-
maxfile=0,
24-
maxpath=0,
20+
opts="rw,relatime"
2521
),
2622
]
2723

0 commit comments

Comments
 (0)