We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d4bf42 commit 9cf3364Copy full SHA for 9cf3364
2 files changed
.github/workflows/deploy-docker.yml
@@ -22,7 +22,7 @@ jobs:
22
envs: GIT_TAG
23
script: |
24
cd epiready
25
- git pull https://shubhmgrg:${{ secrets.CR_TOKEN }}@github.com/your-user/your-repo.git
+ git pull https://shubhmgrg:${{ secrets.CR_TOKEN }}@github.com/UTSC-CSCC01-Software-Engineering-I/term-group-project-c01s25-project-epiready.git
26
git fetch --tags
27
echo "Deploying version: $GIT_TAG"
28
git checkout $GIT_TAG || true
epiready-backend/tests/test_shipment.py
@@ -13,6 +13,7 @@ def all(self): return [obj] if obj else []
13
def first(self): return obj
14
def count(self): return 0
15
def order_by(self, *args, **kwargs): return self
16
+ def limit(self, *args, **kwargs): return self
17
return Q()
18
19
0 commit comments