Skip to content

Commit bdcdfe4

Browse files
committed
add integration install CI
1 parent 6ce2558 commit bdcdfe4

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ init:
1919

2020
install: pip install -e .[tests]
2121

22-
test_script: pytest -rsv
22+
test_script: pytest -r a -v

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,16 @@ addons:
2020
matrix:
2121
include:
2222
- os: linux
23-
name: PEP8 MyPy
23+
name: Integration install
24+
python: 3.7
25+
install:
26+
- python setup.py install
27+
- pip install asyncioffmpeg[tests]
28+
script:
29+
- cd $HOME
30+
- python -m pytest $TRAVIS_BUILD_DIR/tests
31+
- os: linux
32+
name: PEP8 MyPy Cov
2433
python: 3.7
2534
install: pip install -e .[tests,cov]
2635
script:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# asyncio FFmpeg
66

77
Examples of Python asyncio.subprocess with FFmpeg and also traditional synchronous processes.
8-
In general to show the latest techniques, Python ≥ 3.7 is required.
8+
99

1010
## FFprobe
1111

0 commit comments

Comments
 (0)