Skip to content

Commit 1ba13c0

Browse files
committed
Update CI config
1 parent b790f9b commit 1ba13c0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ install:
5252
find dist/ -iname pendulum*.whl -exec unzip -o {} 'pendulum/*' -d . \;
5353
fi
5454
55-
script: pytest --cov=pendulum --cov-config=.coveragerc tests/
55+
script: poetry run pytest --cov=pendulum --cov-config=.coveragerc tests/ -W ignore
5656

5757
after_success:
5858
- codecov

appveyor.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ environment:
44
matrix:
55
- PYTHON: "C:/Python27"
66
- PYTHON: "C:/Python27-x64"
7-
- PYTHON: "C:/Python34"
8-
- PYTHON: "C:/Python34-x64"
97
- PYTHON: "C:/Python35"
108
- PYTHON: "C:/Python35-x64"
119
- PYTHON: "C:/Python36"
@@ -32,7 +30,7 @@ install:
3230
- poetry install -v
3331

3432
test_script:
35-
- "poetry run pytest --cov=pendulum --cov-config=.coveragerc tests/"
33+
- "poetry run pytest --cov=pendulum --cov-config=.coveragerc tests/ -W ignore"
3634

3735
after_test:
3836
- "codecov"

0 commit comments

Comments
 (0)