-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Makefile to simplify the building, testing procedures.
Signed-off-by: MICHELE GAZZETTI <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright IBM Corp. 2023 | ||
# This software is available to you under a BSD 3-Clause License. | ||
# The full license terms are available here: https://github.com/OpenFabrics/sunfish_library_reference/blob/main/LICENSE | ||
|
||
all: build | ||
|
||
build: | ||
poetry build | ||
|
||
test: | ||
python3 -m pytest tests/test_sunfishcore_library.py -vvvv | ||
|
||
clean: | ||
rm -r dist | ||
|
||
|
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