Skip to content

Commit

Permalink
fix all cards text consistency problems
Browse files Browse the repository at this point in the history
  • Loading branch information
LupaDevStudio committed Sep 8, 2023
1 parent f35a48f commit da179d0
Show file tree
Hide file tree
Showing 9 changed files with 94 additions and 163 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/pytest.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/pytest_badge.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Ignore the reports folder
reports

# Ignore ini files
*ini

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

![License](https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png)
![Pylint Badge](https://github.com/LupaDevStudio/Postrias/actions/workflows/pylint.yml/badge.svg)
![Pytest coverage](https://raw.githubusercontent.com/LupaDevStudio/Postrias/coverage-badge/coverage.svg?raw=true)


## License

This game is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License](https://creativecommons.org/licenses/by-nc-sa/4.0/).

Some dependencies and assets of this game are licensed by their creators under different licenses. You can find them in the `licenses` folder.

## Introduction

This game has been developed in April 2020 for the [Hitbox Makers game jam](https://itch.io/jam/hibox-makers-2020).
Expand Down
12 changes: 6 additions & 6 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
FPS,
MSAA_LEVEL
)
from screens import (
from tools.kivy_tools.tools_kivy import (
color_label,
background_color,
Window
)
from screens import ( # pylint: disable=unused-import
MenuScreen,
GameScreen,
SettingsScreen,
GameOverScreen,
AchievementsScreen
)
from tools.kivy_tools.tools_kivy import (
color_label,
background_color,
Window
)


# Set the fullscreen
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ reports = "y"
# [tool.pytest.ini_options]
# addopts = "--ignore=.buildozer --cov-report html:reports/coverage --cov-report xml --cov"

# To generate html report with pytlint : pylint . | pylint_report > reports/linting/report.html
# To generate html report with pytlint : python -m pylint . | pylint_report > reports/linting/report.html
# To generate html reports with pytest : pytest . --ignore=.buildozer --cov-report html:reports/coverage --cov-report xml --cov
Loading

0 comments on commit da179d0

Please sign in to comment.