mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
Update tests.yml
This commit is contained in:
parent
efac726a63
commit
497167a3c1
1 changed files with 10 additions and 57 deletions
59
.github/workflows/tests.yml
vendored
59
.github/workflows/tests.yml
vendored
|
@ -17,32 +17,17 @@ defaults:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pytest:
|
compileall:
|
||||||
name: "🧪 Test package using pytest"
|
name: "🧪 Test package using compileall"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
# If you need a database to perform your tests
|
|
||||||
# services:
|
|
||||||
# postgres:
|
|
||||||
# image: postgres
|
|
||||||
# env:
|
|
||||||
# POSTGRES_USER: username
|
|
||||||
# POSTGRES_PASSWORD: password
|
|
||||||
# POSTGRES_DB: db
|
|
||||||
# options: >-
|
|
||||||
# --health-cmd pg_isready
|
|
||||||
# --health-interval 10s
|
|
||||||
# --health-timeout 5s
|
|
||||||
# --health-retries 5
|
|
||||||
# ports:
|
|
||||||
# - "5432:5432"
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "⬇️ Checkout repository"
|
- name: "⬇️ Checkout repository"
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: "🔨 Setup Python"
|
- name: "🔨 Setup Python"
|
||||||
uses: actions/setup-python@v3
|
uses: actions/setup-python@v3
|
||||||
|
with:
|
||||||
|
python-version: '3.10'
|
||||||
|
|
||||||
- name: "🔨 Setup Poetry"
|
- name: "🔨 Setup Poetry"
|
||||||
uses: abatilo/actions-poetry@v2.1.5
|
uses: abatilo/actions-poetry@v2.1.5
|
||||||
|
@ -51,39 +36,7 @@ jobs:
|
||||||
id: pyenv
|
id: pyenv
|
||||||
uses: Steffo99/actions-poetry-deps@v0.2.4
|
uses: Steffo99/actions-poetry-deps@v0.2.4
|
||||||
|
|
||||||
- name: "🧪 Run tests"
|
- name: "🧪 Run check"
|
||||||
run: |
|
run: |
|
||||||
source ${{ steps.pyenv.outputs.pyenv }}/activate
|
source ${{ steps.pyenv.outputs.pyenv }}/activate
|
||||||
pytest --verbose --cov=. --cov-report=html
|
python -m compileall royalpack
|
||||||
|
|
||||||
- name: "⬆️ Upload coverage"
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: "Coverage"
|
|
||||||
path: htmlcov
|
|
||||||
|
|
||||||
# If you do not want to use unit testing
|
|
||||||
# syntax:
|
|
||||||
# name: "🧪 Check the package's syntax"
|
|
||||||
# runs-on: ubuntu-latest
|
|
||||||
#
|
|
||||||
# steps:
|
|
||||||
# - name: "⬇️ Checkout repository"
|
|
||||||
# uses: actions/checkout@v3
|
|
||||||
#
|
|
||||||
# - name: "🔨 Setup Python"
|
|
||||||
# uses: actions/setup-python@v3
|
|
||||||
# with:
|
|
||||||
# python-version: '3.8'
|
|
||||||
#
|
|
||||||
# - name: "🔨 Setup Poetry"
|
|
||||||
# uses: abatilo/actions-poetry@v2.1.5
|
|
||||||
#
|
|
||||||
# - name: "🔨 Setup Poetry Python environment"
|
|
||||||
# id: pyenv
|
|
||||||
# uses: Steffo99/actions-poetry-deps@v0.2.4
|
|
||||||
#
|
|
||||||
# - name: "🧪 Run check"
|
|
||||||
# run: |
|
|
||||||
# source ${{ steps.pyenv.outputs.pyenv }}/activate
|
|
||||||
# python -m compileall thorunimore
|
|
||||||
|
|
Loading…
Reference in a new issue