Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bugfix/message for full competition #12

Merged
merged 44 commits into from
Nov 12, 2022
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
2a6d504
feat(board.html): add template for points display board
Rossignol-h Nov 3, 2022
dac6fe3
feat(server): add route for points display board
Rossignol-h Nov 3, 2022
9ec1b9b
feat(board.html): complete template
Rossignol-h Nov 3, 2022
9a5ecb2
test(test_points_board): start testing happy path
Rossignol-h Nov 3, 2022
a804593
feat(board.html): add condition if no clubs in json
Rossignol-h Nov 3, 2022
ba40644
test(test_points_board): add sad path to test
Rossignol-h Nov 3, 2022
6de31c2
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 3, 2022
b14eb64
test(units/): add test_unlimited_points.py
Rossignol-h Nov 4, 2022
2a5efc9
fix(server): add condition to limit purchase
Rossignol-h Nov 4, 2022
a483196
fix(booking.html): add display of flash message
Rossignol-h Nov 4, 2022
5e8d390
test(units/): test_unlimited_points.py passed
Rossignol-h Nov 4, 2022
780e3ab
test(units/): change docstrings in test_unlimited_points.py
Rossignol-h Nov 4, 2022
9117bf8
test(units/): done test_unlimited_points.py
Rossignol-h Nov 4, 2022
180b54a
fix(issue): [OpenClassrooms-Student-Center#2]
Rossignol-h Nov 4, 2022
f8fccaf
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 4, 2022
620e30c
test(units/): add test_points_not_update.py
Rossignol-h Nov 4, 2022
abd9acc
fix(server): add substraction points after book places
Rossignol-h Nov 4, 2022
f9749c6
test(units/): run test_points_not_update.py and passed
Rossignol-h Nov 4, 2022
29d3429
fix(issue): [OpenClassrooms-Student-Center#6]
Rossignol-h Nov 4, 2022
a67873d
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 4, 2022
d00626e
test(units/): add test_book_under_12.py
Rossignol-h Nov 4, 2022
91eb7bd
fix(server): add condition if book more 12 places
Rossignol-h Nov 5, 2022
4616afc
test(units/): complete test_book_under_12.py and run tests passed
Rossignol-h Nov 5, 2022
68d0b9f
fix(issue): [OpenClassrooms-Student-Center#4]
Rossignol-h Nov 5, 2022
44d955b
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 5, 2022
003e835
test(functional/): add & complete test_route.py
Rossignol-h Nov 5, 2022
ee78581
fix(404.html): add 404 handler and template
Rossignol-h Nov 5, 2022
fa7042f
fix(500.html): add 500 handler and template
Rossignol-h Nov 5, 2022
7c824f6
test(functional/): add & complete test_load_json.py
Rossignol-h Nov 5, 2022
3ac27d1
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 5, 2022
14343cb
test(integration/): add & complete test of app
Rossignol-h Nov 5, 2022
b428b75
fix(server): issue book more than places available
Rossignol-h Nov 5, 2022
35673a1
test(integration/): cleanup test_app
Rossignol-h Nov 6, 2022
7676a80
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 6, 2022
acfd255
test(coverage/): make changes to have 100% test coverage
Rossignol-h Nov 8, 2022
2acd116
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 8, 2022
ee78381
test(requirements.txt): install Locust
Rossignol-h Nov 8, 2022
e83379b
test(performance/): configure locust
Rossignol-h Nov 8, 2022
86cc6e6
test(performance/): add README
Rossignol-h Nov 8, 2022
c4a7093
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 8, 2022
1ede1ce
refactor(app): flake8 html report 100% clean
Rossignol-h Nov 8, 2022
c298dc0
refactor(app): remove unused fixtures
Rossignol-h Nov 12, 2022
a56dbe3
Merge branch 'master' of github.com:Rossignol-h/P11_Python_Testing
Rossignol-h Nov 12, 2022
5538e68
fix(welcome.hmtl): adde operator = to fix bug
Rossignol-h Nov 12, 2022
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
2 changes: 1 addition & 1 deletion templates/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h3>Competitions:</h3>
{{comp['name']}}<br />
Date: {{comp['date']}}</br>
Number of Places: {{comp['numberOfPlaces']}}
{% if comp['numberOfPlaces']|int < 0 %}
{% if comp['numberOfPlaces']|int <= 0 %}
<p>This competition is full</p>
{% elif comp['date'] < current_date %}
<p>This competition is over</p>
Expand Down