Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit e0b2bfb

Browse files
author
Jaquier Aurélien Tristan
committed
Merge branch 'master' of https://github.com/BlueBrain/BluePyOpt into neuroml
2 parents ea3cbb0 + 8e158e6 commit e0b2bfb

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ jobs:
4949
uses: actions/setup-python@v2
5050
with:
5151
python-version: 3.6
52-
- name: Build a source tarball
53-
run:
54-
python setup.py sdist
52+
- name: Build a source tarball and wheel
53+
run: |
54+
pip install wheel
55+
python setup.py sdist bdist_wheel
5556
5657
- name: Publish package to PyPI
5758
uses: pypa/gh-action-pypi-publish@master

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ commands =
3838
syntax: flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
3939

4040
unit: pytest --cov=bluepyopt {[testenv]coverage_options} bluepyopt/tests -k unit
41-
functional: pytest --cov=bluepyopt {[testenv]coverage_options} bluepyopt/tests -k-unit
41+
functional: pytest --cov=bluepyopt {[testenv]coverage_options} bluepyopt/tests -k 'not unit'
4242

4343
[testenv:docs]
4444
basepython = python3.6

0 commit comments

Comments
 (0)