-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* creatign a new PR just to test actions * uses default github action from strawberry repo * making a test wrong to see if gets a error * make test correct again * take back poetry command * another test * test with coverage cml * add coverage package * change codecove version * change order * ops * trying wiht no async to see whats wrong with xdist * bring back async * fix: BigInt raising errors * add release md
- Loading branch information
Showing
3 changed files
with
41 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Release type: patch | ||
|
||
Resolved an issue with the BigInt scalar definition, ensuring compatibility with Python 3.8 and 3.9. The missing name parameter was added to prevent runtime errors. | ||
Fixed failing CI tests by updating the GitHub Actions workflow to improve test stability. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ | |
serialize=lambda v: int(v), | ||
parse_value=lambda v: str(v), | ||
description="BigInt field", | ||
name="BigInt", | ||
) |