Skip to content

Commit cafd7e2

Browse files
authored
Merge pull request #5 from scaleway/booking
Booking
2 parents 31bb671 + e73606d commit cafd7e2

37 files changed

+957
-416
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,5 @@ cython_debug/
205205
marimo/_static/
206206
marimo/_lsp/
207207
__marimo__/
208+
209+
*.env

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,11 @@ install-test:
4040

4141
.PHONY: test
4242
test:
43-
pytest -s --showprogress -vv tests/
43+
pytest -s --showprogress -vv tests/test_api.py
44+
45+
.PHONY: test-booking
46+
test-booking:
47+
pytest -s --showprogress -vv tests/test_booking.py
48+
49+
.PHONY: all
50+
all: v1alpha1

0 commit comments

Comments
 (0)