From 0dddc1494d0dbd91c63a319b5624c7e14547a0f4 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 22 Dec 2019 18:21:35 +0100 Subject: [PATCH] Remove py3 marker. --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1ad01c489a..8a6a21355a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2 jobs: - run_tests_py3_torch_and_tf: + run_tests_torch_and_tf: working_directory: ~/transformers docker: - image: circleci/python:3.5 @@ -17,7 +17,7 @@ jobs: - run: sudo pip install tensorboardX scikit-learn - run: python -m pytest -n 8 --dist=loadfile -s -v ./tests/ --cov - run: codecov - run_tests_py3_torch: + run_tests_torch: working_directory: ~/transformers docker: - image: circleci/python:3.5 @@ -33,7 +33,7 @@ jobs: - run: sudo pip install tensorboardX scikit-learn - run: python -m pytest -n 8 --dist=loadfile -s -v ./tests/ --cov - run: codecov - run_tests_py3_tf: + run_tests_tf: working_directory: ~/transformers docker: - image: circleci/python:3.5 @@ -49,7 +49,7 @@ jobs: - run: sudo pip install tensorboardX scikit-learn - run: python -m pytest -n 8 --dist=loadfile -s -v ./tests/ --cov - run: codecov - run_tests_py3_custom_tokenizers: + run_tests_custom_tokenizers: working_directory: ~/transformers docker: - image: circleci/python:3.5 @@ -59,7 +59,7 @@ jobs: - run: sudo pip install pytest pytest-xdist - run: sudo pip install mecab-python3 - run: RUN_CUSTOM_TOKENIZERS=1 python -m pytest -sv ./tests/test_tokenization_bert_japanese.py - run_examples_py3_torch: + run_examples_torch: working_directory: ~/transformers docker: - image: circleci/python:3.5 @@ -121,9 +121,9 @@ workflows: jobs: - check_code_quality - check_repository_consistency - - run_examples_py3_torch - - run_tests_py3_custom_tokenizers - - run_tests_py3_torch_and_tf - - run_tests_py3_torch - - run_tests_py3_tf + - run_examples_torch + - run_tests_custom_tokenizers + - run_tests_torch_and_tf + - run_tests_torch + - run_tests_tf - deploy_doc: *workflow_filters