-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
1,731 additions
and
938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: CI tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 8 * * *' | ||
|
||
jobs: | ||
build: | ||
|
||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
runs-on: ubuntu-20.04 | ||
|
||
services: | ||
mariadb: | ||
image: mariadb:latest | ||
ports: | ||
- 3306:3306 | ||
env: | ||
MYSQL_USER: silence | ||
MYSQL_PASSWORD: 123456 | ||
MYSQL_DATABASE: testing | ||
MYSQL_ROOT_PASSWORD: 123456 | ||
options: --health-cmd="mariadb-admin ping" --health-interval=8s --health-timeout=4s --health-retries=10 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
- name: Test Silence | ||
run: | | ||
silence new ci_app --url https://github.com/DEAL-US/Silence-CI-Project | ||
cd ci_app | ||
silence createdb | ||
silence createapi | ||
silence run & | ||
sleep 15 | ||
cd test | ||
python run_tests.py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
cff-version: 1.2.0 | ||
title: "Silence" | ||
message: "If you use Silence in a research project, please consider citing it as:" | ||
authors: | ||
- family-names: "Borrego" | ||
given-names: "Agustín" | ||
orcid: "https://orcid.org/0000-0003-3750-8484" | ||
- family-names: "Bermudo" | ||
given-names: "Miguel" | ||
- family-names: "Sola" | ||
given-names: "Fernando" | ||
- family-names: "Ayala" | ||
given-names: "Daniel" | ||
orcid: "https://orcid.org/0000-0003-2095-1009" | ||
- family-names: "Hernández" | ||
given-names: "Inma" | ||
orcid: "https://orcid.org/0000-0001-8920-6635" | ||
- family-names: "Ruiz" | ||
given-names: "David" | ||
orcid: "https://orcid.org/0000-0003-4460-5493" | ||
preferred-citation: | ||
type: article | ||
authors: | ||
- family-names: "Borrego" | ||
given-names: "Agustín" | ||
orcid: "https://orcid.org/0000-0003-3750-8484" | ||
- family-names: "Bermudo" | ||
given-names: "Miguel" | ||
- family-names: "Sola" | ||
given-names: "Fernando" | ||
- family-names: "Ayala" | ||
given-names: "Daniel" | ||
orcid: "https://orcid.org/0000-0003-2095-1009" | ||
- family-names: "Hernández" | ||
given-names: "Inma" | ||
orcid: "https://orcid.org/0000-0001-8920-6635" | ||
- family-names: "Ruiz" | ||
given-names: "David" | ||
orcid: "https://orcid.org/0000-0003-4460-5493" | ||
title: "Silence — A web framework for an agile generation of RESTful APIs" | ||
journal: "SoftwareX" | ||
volume: 20 | ||
pages: "101260" | ||
year: 2022 | ||
doi: "10.1016/j.softx.2022.101260" | ||
url: "https://www.sciencedirect.com/science/article/pii/S2352711022001789" |
Oops, something went wrong.