We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8452df6 commit 724bd4dCopy full SHA for 724bd4d
1 file changed
appveyor.yml
@@ -1,18 +1,20 @@
1
image: ubuntu1804
2
3
-install:
4
- - sudo apt-get install -y python3-setuptools python3-wheel twine
5
-
6
build: off
7
+install:
+ - sudo apt-get install -y python3-pip
+
8
build_script:
9
+ - pip3 install --user -U pip setuptools wheel flake8
10
+ - export PATH="$(python3 -m site --user-base)/bin:${PATH}"
11
- python3 setup.py build
12
13
test_script:
- - python3 setup.py flake8
14
+ - flake8 .
15
16
after_test:
- - python3 setup.py bdist_wheel bdist_egg
17
+ - python3 setup.py bdist_wheel
18
19
artifacts:
20
- path: dist/*
0 commit comments