CI Add tests and package deploy
This commit is contained in:
parent
b80efe3312
commit
c9b83df928
8 changed files with 128 additions and 44 deletions
92
.forgejo/workflows/build.yml
Normal file
92
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
name: Tests
|
||||||
|
runs-on: docker
|
||||||
|
|
||||||
|
container:
|
||||||
|
image: python:3.11-alpine
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: "Setup env"
|
||||||
|
run: |
|
||||||
|
apk add --no-cache git nodejs
|
||||||
|
pip install tox
|
||||||
|
|
||||||
|
- name: "Get repo"
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: "Tests"
|
||||||
|
run: tox
|
||||||
|
|
||||||
|
sonarqube:
|
||||||
|
name: SonarQube
|
||||||
|
runs-on: docker
|
||||||
|
|
||||||
|
if: github.ref == 'refs/heads/master'
|
||||||
|
|
||||||
|
container:
|
||||||
|
image: alpine
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: "Setup env"
|
||||||
|
run: apk add --no-cache git nodejs bash curl jq
|
||||||
|
|
||||||
|
- name: "Get repo"
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
|
|
||||||
|
- name: "SonarQube Scan"
|
||||||
|
uses: https://github.com/sonarsource/sonarqube-scan-action@master
|
||||||
|
env:
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||||
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
||||||
|
|
||||||
|
# If you wish to fail your job when the Quality Gate is red, uncomment the
|
||||||
|
# following lines. This would typically be used to fail a deployment.
|
||||||
|
- name: "SonarQube Quality gate"
|
||||||
|
uses: https://github.com/sonarsource/sonarqube-quality-gate-action@master
|
||||||
|
timeout-minutes: 5
|
||||||
|
env:
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||||
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
name: Deploy
|
||||||
|
runs-on: docker
|
||||||
|
needs:
|
||||||
|
- tests
|
||||||
|
- sonarqube
|
||||||
|
|
||||||
|
if: github.ref == 'refs/heads/master'
|
||||||
|
|
||||||
|
container:
|
||||||
|
image: python:3.11-alpine
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: "Setup env"
|
||||||
|
run: |
|
||||||
|
apk add --no-cache git nodejs
|
||||||
|
pip install build twine
|
||||||
|
|
||||||
|
- name: "Get repo"
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: "Build"
|
||||||
|
run: python -m build
|
||||||
|
|
||||||
|
- name: "Push"
|
||||||
|
uses: https://github.com/pypa/gh-action-pypi-publish@release/v1
|
||||||
|
with:
|
||||||
|
user: "${{ env.GITHUB_ACTOR }}"
|
||||||
|
password: "${{ secrets.PACKAGE_TOKEN }}"
|
||||||
|
repository-url: "${{ env.GITHUB_SERVER_URL }}/api/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/pypi"
|
|
@ -1,38 +0,0 @@
|
||||||
name: SonarQube
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
sonarqube:
|
|
||||||
name: SonarQube
|
|
||||||
runs-on: docker
|
|
||||||
|
|
||||||
container:
|
|
||||||
image: alpine
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: "Setup env"
|
|
||||||
run: apk add --no-cache git nodejs bash curl jq
|
|
||||||
|
|
||||||
- name: "Get repo"
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
|
||||||
|
|
||||||
- name: "SonarQube Scan"
|
|
||||||
uses: https://github.com/sonarsource/sonarqube-scan-action@master
|
|
||||||
env:
|
|
||||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
||||||
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
||||||
|
|
||||||
# If you wish to fail your job when the Quality Gate is red, uncomment the
|
|
||||||
# following lines. This would typically be used to fail a deployment.
|
|
||||||
- name: "SonarQube Quality gate"
|
|
||||||
uses: https://github.com/sonarsource/sonarqube-quality-gate-action@master
|
|
||||||
timeout-minutes: 5
|
|
||||||
env:
|
|
||||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
||||||
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,6 +1,11 @@
|
||||||
/.vscode
|
/.vscode
|
||||||
/venv
|
/venv
|
||||||
|
/.venv
|
||||||
/administrator/settings/local_settings.py
|
/administrator/settings/local_settings.py
|
||||||
__pycache__
|
__pycache__
|
||||||
/discord.log
|
/discord.log
|
||||||
/*.db
|
/*.db
|
||||||
|
/.tox
|
||||||
|
/.eggs/
|
||||||
|
/*.egg-info/
|
||||||
|
/build/
|
1
VERSION
Normal file
1
VERSION
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0.1.0
|
5
administrator/test/test_basic.py
Normal file
5
administrator/test/test_basic.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
def test_bypass():
|
||||||
|
"""
|
||||||
|
Bypass pyrtest
|
||||||
|
"""
|
||||||
|
pass
|
14
setup.py
14
setup.py
|
@ -4,18 +4,22 @@ from setuptools import setup, find_packages
|
||||||
with open("README.md") as f:
|
with open("README.md") as f:
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
|
||||||
with open("LICENSE") as f:
|
|
||||||
license = f.read()
|
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='administrator',
|
name='administrator',
|
||||||
version='0.1.0',
|
setuptools_git_versioning={
|
||||||
|
"enabled": True,
|
||||||
|
"version_file": "VERSION",
|
||||||
|
"count_commits_from_version_file": True,
|
||||||
|
"dev_template": "{tag}.dev{ccount}",
|
||||||
|
"dirty_template": "{tag}.{branch}{ccount}",
|
||||||
|
},
|
||||||
|
setup_requires=["setuptools-git-versioning"],
|
||||||
description='All purpose Discord bot',
|
description='All purpose Discord bot',
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
author='Ethanell',
|
author='Ethanell',
|
||||||
author_email='ethanell@flifloo.fr',
|
author_email='ethanell@flifloo.fr',
|
||||||
url='https://git.flifloo.fr/flifloo/Administrator',
|
url='https://git.flifloo.fr/flifloo/Administrator',
|
||||||
license=license,
|
license="GNU General Public License v3.0",
|
||||||
packages=find_packages(exclude=('tests', 'docs'))
|
packages=find_packages(exclude=('tests', 'docs'))
|
||||||
)
|
)
|
||||||
|
|
15
tox.ini
Normal file
15
tox.ini
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[tox]
|
||||||
|
env_list =
|
||||||
|
py311
|
||||||
|
minversion = 4.4.7
|
||||||
|
|
||||||
|
[testenv]
|
||||||
|
description = run the tests with pytest
|
||||||
|
package = wheel
|
||||||
|
wheel_build_env = .pkg
|
||||||
|
deps =
|
||||||
|
pytest>=6
|
||||||
|
flake8
|
||||||
|
-r requirements.txt
|
||||||
|
commands =
|
||||||
|
pytest {tty:--color=yes} {posargs} administrator
|
Loading…
Reference in a new issue