Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
652fd68
add ability to pass in multiple request rates
DaltheCow Jun 19, 2024
bfcc329
running tests command is added to the Makefile
parfeniukink Jun 26, 2024
44f8e41
rename to fixed rate profile generator
DaltheCow Jul 2, 2024
d8469cb
increment rate index
DaltheCow Jul 2, 2024
eb03706
combine constanct and poisson Profile creation
DaltheCow Jul 2, 2024
9a0c582
throw error if user passes in rate in synchronous mode
DaltheCow Jul 2, 2024
fb1ebcb
refactor to better handle creating profile generator
DaltheCow Jul 2, 2024
bf72422
test base ProfileGenerator class
DaltheCow Jul 3, 2024
98f79c4
update fixed rate profile generator, add tests, set up initial execut…
DaltheCow Jul 9, 2024
c0284a3
test executor run method
DaltheCow Jul 10, 2024
d915515
test sweep profile generator
DaltheCow Jul 11, 2024
993610a
merge main
DaltheCow Jul 15, 2024
ffc0e7b
fix test indentation
DaltheCow Jul 15, 2024
b41b74a
fix some improper imports
DaltheCow Jul 17, 2024
c78d2ba
Merge branch 'main' into multiple-request-rates
DaltheCow Jul 18, 2024
98ff5e4
merge main, handle merge conflicts minus the tests
DaltheCow Jul 23, 2024
21774cd
wip
DaltheCow Jul 23, 2024
1d3a7cf
wip
DaltheCow Jul 23, 2024
79c03ce
fix all broken tests
DaltheCow Jul 23, 2024
8833ae3
run make style
DaltheCow Jul 23, 2024
2ec371b
fix linting issues
DaltheCow Jul 23, 2024
2361916
remove unused import
DaltheCow Jul 23, 2024
ca8e553
fix type issue
DaltheCow Jul 23, 2024
ce460de
pytest.init_options section is restored
Jul 24, 2024
3062fba
format pyproject.toml file
Jul 24, 2024
7524977
Merge branch 'main' into multiple-request-rates
markurtz Jul 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ lint.select = ["E", "F", "W"]


[tool.pytest.ini_options]
addopts = '-s -vvv --cache-clear --cov-report=term-missing --cov --cov-fail-under=75'
markers = [
"smoke: quick tests to check basic functionality",
"sanity: detailed tests to ensure major functions work correctly",
"regression: tests to ensure that new changes do not break existing functionality"
]
addopts = '-s -vvv --cache-clear --cov-report=term-missing --cov --cov-fail-under=75'
markers = [
"smoke: quick tests to check basic functionality",
"sanity: detailed tests to ensure major functions work correctly",
"regression: tests to ensure that new changes do not break existing functionality"
]
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My bad leaving this in! Thanks for removing, I was just trying to make working on tests easier