forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Migrate some CircleCI jobs to Azure (pandas-dev#22992)
- Loading branch information
1 parent
9d72428
commit 0d25d67
Showing
16 changed files
with
122 additions
and
147 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
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
File renamed without changes.
File renamed without changes.
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,35 @@ | ||
name: pandas | ||
channels: | ||
- defaults | ||
- conda-forge | ||
dependencies: | ||
- beautifulsoup4 | ||
- cython>=0.28.2 | ||
- html5lib | ||
- ipython | ||
- jinja2 | ||
- lxml | ||
- matplotlib | ||
- nomkl | ||
- numexpr | ||
- numpy | ||
- openpyxl=2.5.5 | ||
- psycopg2 | ||
- pymysql | ||
- pytables | ||
- python-dateutil | ||
- python=3.6* | ||
- pytz | ||
- s3fs | ||
- scipy | ||
- sqlalchemy | ||
- xarray | ||
- xlrd | ||
- xlsxwriter | ||
- xlwt | ||
# universal | ||
- pytest | ||
- pytest-xdist | ||
- moto | ||
- pip: | ||
- hypothesis>=3.58.0 |
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,56 @@ | ||
parameters: | ||
name: '' | ||
vmImage: '' | ||
|
||
jobs: | ||
- job: ${{ parameters.name }} | ||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
strategy: | ||
maxParallel: 11 | ||
matrix: | ||
py27_np_19: | ||
ENV_FILE: ci/azure-27-compat.yaml | ||
CONDA_PY: "27" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--skip-slow --skip-network" | ||
|
||
py36_locale: | ||
ENV_FILE: ci/azure-37-locale.yaml | ||
CONDA_PY: "37" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--skip-slow --skip-network" | ||
LOCALE_OVERRIDE: "zh_CN.UTF-8" | ||
|
||
py36_locale_slow: | ||
ENV_FILE: ci/azure-36-locale_slow.yaml | ||
CONDA_PY: "36" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--only-slow --skip-network" | ||
|
||
steps: | ||
- script: | | ||
if [ "$(uname)" == "Linux" ]; then sudo apt-get install -y libc6-dev-i386; fi | ||
echo "Installing Miniconda"{ | ||
ci/incremental/install_miniconda.sh | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
echo "Setting up Conda environment" | ||
ci/incremental/setup_conda_environment.sh | ||
displayName: 'Before Install' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
ci/incremental/build.sh | ||
displayName: 'Build' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
ci/script_single.sh | ||
ci/script_multi.sh | ||
echo "[Test done]" | ||
displayName: 'Test' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
source activate pandas && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd | ||
- task: PublishTestResults@2 | ||
inputs: | ||
testResultsFiles: 'test-data-*.xml' | ||
testRunTitle: 'Linux' |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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