From 80fd08a3fcd2ec302db2876e8aac96958ece836b Mon Sep 17 00:00:00 2001 From: Ricardo Kennedy Date: Tue, 3 Nov 2020 10:21:35 +0100 Subject: [PATCH] CI: Add quick build test for PyPI (#75) --- README.rst | 10 ++++++++-- azure-pipelines.yml | 11 ++++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index ea9979c1f..a8c8eba07 100644 --- a/README.rst +++ b/README.rst @@ -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 bcg com. -For further information on contributing please see our :ref:`contribution-guide`. +For further information on contributing please see our `contribution guide +`_ (todo: +replace with RTD link once published). + + License --------------------------- @@ -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 `_ (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 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 32ec59109..6eb39e0ee 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -105,7 +105,7 @@ stages: jobs: - job: - displayName: 'in develop environment' + displayName: 'pytest @ develop environment' condition: > and( ne(variables.master_or_release, 'True'), @@ -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'