diff --git a/.circleci/config.yml b/.circleci/config.yml index f32810bfad..4f681c6454 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -57,7 +57,10 @@ jobs: steps: - checkout - run: sudo pip install .[mecab,testing] - - run: python -m pytest -sv ./tests/test_tokenization_bert_japanese.py + - run: python -m pytest -s ./tests/test_tokenization_bert_japanese.py | tee output.txt + - store_artifacts: + path: ~/transformers/output.txt + destination: test_output.txt run_examples_torch: working_directory: ~/transformers docker: diff --git a/.github/workflows/self-push.yml b/.github/workflows/self-push.yml index 99ac75e899..c1adfeca6a 100644 --- a/.github/workflows/self-push.yml +++ b/.github/workflows/self-push.yml @@ -51,7 +51,9 @@ jobs: USE_CUDA: yes run: | source .env/bin/activate - python -m pytest -n 2 --dist=loadfile -s -v ./tests/ | tee output.txt + python -m pytest -n 2 --dist=loadfile -s ./tests/ | tee output.txt + - name: cat output.txt + run: cat output.txt - name: Upload output.txt uses: actions/upload-artifact@v1 with: diff --git a/.github/workflows/self-scheduled.yml b/.github/workflows/self-scheduled.yml index 016bd333a5..6ce9d50d1e 100644 --- a/.github/workflows/self-scheduled.yml +++ b/.github/workflows/self-scheduled.yml @@ -46,7 +46,9 @@ jobs: USE_CUDA: yes run: | source .env/bin/activate - python -m pytest -n 1 --dist=loadfile -s -v ./tests/ | tee output.txt + python -m pytest -n 1 --dist=loadfile -s ./tests/ | tee output.txt + - name: cat output.txt + run: cat output.txt - name: Upload output.txt uses: actions/upload-artifact@v1 with: