Skip to content
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

CI: Add quick build test for PyPI #75

Merged
merged 2 commits into from
Nov 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ please open a PR addressing the issue.
We do ask that for any major changes please discuss these with us first via an issue or
at our team email: FacetTeam <at> bcg <dot> com.

For further information on contributing please see our :ref:`contribution-guide`.
For further information on contributing please see our `contribution guide
<https://github.gamma.bcg.com/pages/facet/facet/contribution_guide.html>`_ (todo:
replace with RTD link once published).



License
---------------------------
Expand All @@ -65,7 +69,9 @@ TBD
BCG GAMMA
---------------------------

If you would like to know more about the team behind pytools please see our :ref:`about_us` page.
If you would like to know more about the team behind pytools please see our `about us
page <https://github.gamma.bcg.com/pages/facet/facet/about_us.html>`_ (todo: replace
with RTD link once published).

We are always on the lookout for passionate and talented data scientists to join the
BCG GAMMA team. If you would like to know more you can find out about BCG GAMMA
Expand Down
11 changes: 10 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ stages:

jobs:
- job:
displayName: 'in develop environment'
displayName: 'pytest @ develop environment'
condition: >
and(
ne(variables.master_or_release, 'True'),
Expand All @@ -126,6 +126,15 @@ stages:

- script: dir $(Build.SourcesDirectory)

- task: Bash@3
inputs:
targetType: 'inline'
script: |
set -e
pip install flit
flit build
displayName: 'Quick build test'

- task: Bash@3
inputs:
targetType: 'inline'
Expand Down