Skip to content

Commit 14f1951

Browse files
authored
Merge branch 'master' into support-poetry-private-repos
2 parents 6d3127d + d86b7fb commit 14f1951

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Lint
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Test
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ custom:
180180

181181
To specify additional directories to remove from the installed packages,
182182
define a list of patterns in the serverless config using the `slimPatterns`
183-
option and glob syntax. These paterns will be added to the default ones (`**/*.py[c|o]`, `**/__pycache__*`, `**/*.dist-info*`).
183+
option and glob syntax. These patterns will be added to the default ones (`**/*.py[c|o]`, `**/__pycache__*`, `**/*.dist-info*`).
184184
Note, the glob syntax matches against whole paths, so to match a file in any
185185
directory, start your pattern with `**/`.
186186

test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ test(
11011101
async t => {
11021102
process.chdir('tests/base');
11031103
const path = npm(['pack', '../..']);
1104-
const perm = '775';
1104+
const perm = '755';
11051105

11061106
npm(['i', path]);
11071107
perl([
@@ -1895,7 +1895,7 @@ test(
18951895
async t => {
18961896
process.chdir('tests/individually');
18971897
const path = npm(['pack', '../..']);
1898-
const perm = '775';
1898+
const perm = '755';
18991899
writeFileSync(`module1${sep}foobar`, '');
19001900
chmodSync(`module1${sep}foobar`, perm);
19011901

@@ -1934,7 +1934,7 @@ test(
19341934
async t => {
19351935
process.chdir('tests/individually');
19361936
const path = npm(['pack', '../..']);
1937-
const perm = '775';
1937+
const perm = '755';
19381938
writeFileSync(`module1${sep}foobar`, '', { mode: perm });
19391939
chmodSync(`module1${sep}foobar`, perm);
19401940

0 commit comments

Comments
 (0)