Skip to content

Commit 814f728

Browse files
authored
Merge branch 'master' into mount-ssh-dir
2 parents 0217946 + 6e71447 commit 814f728

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ custom:
105105
## :sparkles::pencil::sparkles: Poetry support
106106

107107
If you include a `pyproject.toml` and have `poetry` installed instead of a `requirements.txt` this will use
108-
`poetry export --without-hashes -f requirements.txt -o requirements.txt` to generate them. It is fully compatible with all options such as `zip` and
108+
`poetry export --without-hashes -f requirements.txt -o requirements.txt --with-credentials` to generate them. It is fully compatible with all options such as `zip` and
109109
`dockerizePip`. If you don't want this plugin to generate it for you, set the following option:
110110

111111
```yaml

lib/poetry.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function pyprojectTomlToRequirements() {
2222
'-f',
2323
'requirements.txt',
2424
'-o',
25-
'requirements.txt'
25+
'requirements.txt',
26+
'--with-credentials'
2627
],
2728
{
2829
cwd: this.servicePath

test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ test(
11321132
async t => {
11331133
process.chdir('tests/base');
11341134
const path = npm(['pack', '../..']);
1135-
const perm = '775';
1135+
const perm = '755';
11361136

11371137
npm(['i', path]);
11381138
perl([
@@ -1926,7 +1926,7 @@ test(
19261926
async t => {
19271927
process.chdir('tests/individually');
19281928
const path = npm(['pack', '../..']);
1929-
const perm = '775';
1929+
const perm = '755';
19301930
writeFileSync(`module1${sep}foobar`, '');
19311931
chmodSync(`module1${sep}foobar`, perm);
19321932

@@ -1965,7 +1965,7 @@ test(
19651965
async t => {
19661966
process.chdir('tests/individually');
19671967
const path = npm(['pack', '../..']);
1968-
const perm = '775';
1968+
const perm = '755';
19691969
writeFileSync(`module1${sep}foobar`, '', { mode: perm });
19701970
chmodSync(`module1${sep}foobar`, perm);
19711971

0 commit comments

Comments
 (0)