-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure tests on Github Actions #18
Conversation
.github/workflows/ci.yml
Outdated
@@ -0,0 +1,25 @@ | |||
name: Launch tests and quality gate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name: Launch tests and quality gate | |
name: tests and quality targets |
.github/workflows/ci.yml
Outdated
|
||
jobs: | ||
build: | ||
name: Launch tests on test project |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name: Launch tests on test project | |
name: tests |
.github/workflows/ci.yml
Outdated
python-version: ${{ matrix.version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools wheel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python -m pip install --upgrade pip setuptools wheel | |
pip install --upgrade pip setuptools wheel |
requirements_dev.txt
Outdated
pytz | ||
readme_renderer | ||
setuptools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setuptools | |
setuptools # needed for docs build (conf.py) |
Launching tests using `python setup.py tests`is deprecated. This is why we introduce pytest.
Build-system info are useless in setup.cfg
05f4cb7
to
617ca2d
Compare
No description provided.